I have an issue with a blank line again... So I have an empty line between 2 paragraphs on my Latex script and I have this error message :
Code: Select all
! Missing $ inserted.<inserted text>$
Code: Select all
! Missing $ inserted.<inserted text>$
NEW: TikZ book now 40% off at Amazon.com for a short time.
%
to find the cause.Code: Select all
\documentclass{article}
\begin{document}
\[
x
y
\]
\end{document}
\
very likely is the wrong choice here. If you really want that blank line then you should comment said line – see the difference:Code: Select all
\documentclass{article}
\begin{document}
\[
x
%
y
\]
\[
x
\
y
\]
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.