I have the following code:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{eqnarray*}
\Rightarrow & x^2 > 4 \ \land & x\ge 0
\end{eqnarray*}
\end{document}
What I want to do, is to set a column separator in the eqnarray above. But if I put one before \land or try to make an extra column in the middle, LaTeX gives me an error with a description like ! Missing $ inserted.
Hm, why? Thank you!
UPD. for Emma:
\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\begin{document}
\begin{proof}
$\subseteq$: Sei $x \in M $.
\begin{align*}
\Rightarrow & x^2 > 4 &\text{\ und\ }&x \ge 0 \\
\Rightarrow &\underbrace{x^2 - 4}_{(x-2)(x+2)} > 0 & \text{\ und\ } & x \ge 0 \\
\Rightarrow & x>2 & & \\
\Rightarrow & x \in N & &
\end{align*}
\end{proof}
\end{document}
\Rightarrow & x^2 > 4 \ & \land & x\ge 0in the starred align environment, you will mention that there is no space between the arrow and the quad, than there comes a hole and the same with the logicalandand the rest of the sentence. It could be great, if the thing looked like an obsoleteMr. eqnarray, but with 4 columns :) Thank you! – jupiter_jazz Oct 19 '16 at 02:39&s here for the space they put in (which is generally considered a disadvantage of eqnarray), rather than to provide consistent horizontal alignment across multiple lines (which is the main intent of these environments). If you replace each&with\quad, does that give you what you want? – Emma Oct 19 '16 at 03:05tabularwere ok, but than some\newcolumntypefor math style are needed, as I use only math. there.tabularxis the same.eqnarrayworks only for 3 columns, as you said.alignputs spaces spontaniously.\quads are not ok, because they do not give me control over the whole proof. Thank you. – jupiter_jazz Oct 19 '16 at 03:42alignatinstead ofalign. Does this help? – Emma Oct 19 '16 at 04:20\!command refers to? Is this a LaTeX or LaTeX package command, what it does? – jupiter_jazz Oct 23 '16 at 06:31\!is just a small negative space to cancel out the extra width added by the brace. (The\mathclapmakes the layout ignore the width of the text under the brace, but the brace itself seems to add a little width as well.) – Emma Oct 23 '16 at 16:58