开发者

grouping and logical implication in math mode

开发者 https://www.devze.com 2022-12-31 00:12 出处:网络
How could I typeset a formula like this: It shou开发者_JS百科ld respect typographic rules, but it must look very similar.You could use the aligned environment (requires the amsmath package), e.g.

How could I typeset a formula like this:

grouping and logical implication in math mode

It shou开发者_JS百科ld respect typographic rules, but it must look very similar.


You could use the aligned environment (requires the amsmath package), e.g.

\left. \begin{aligned}
   A &= T \\
   B &= F 
\end{aligned} \right\} \implies A \vee B = T \vee F = T

grouping and logical implication in math mode


(Assuming you meant to use logical disjunction and logical implication)

\[
\left.\begin{array}{l}
    A = T \\ B = F 
\end{array}\right\} 
\implies A \lor B = T \lor F = T
\]


This code should do what you want:

\[ 
  \left.
  \begin{array}{c}
    A = T\\
    B = F
  \end{array}
  \right\}
  \Rightarrow A \vee B = T \vee F = T
\]
0

精彩评论

暂无评论...
验证码 换一张
取 消