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>$
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
%
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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis