Tagged Questions
3
votes
0answers
34 views
Is there an easy way to comment out a whole block? [duplicate]
Possible Duplicate:
Multi-line (block) comments in LaTeX
Is it possible to comment out a whole block in LaTeX source?
For example, like in Java:
// This is an in-line comment.
/*
This
...
3
votes
2answers
282 views
Adding extra lines/spaces in source, *not* affecting semantics
I'm editing a file with quite huge interleaves of text and formulas like this
lorem ipsums
\begin{align}
foo & bar\\
qux & rofl\\
& toto
\end{align}
lorem ipsums
…
And I face ...