Hi,
Federico Beffa <[email protected]> writes:
> The problem with that is that a displayed equation should NOT start a
> new paragraph (in the generated LaTeX file). This is because if it
> does then LaTeX puts more (vertical) space than desirable.
If this is always the case for you, you can "fix" this behavior by
always putting it in a new paragraph and using a filter.
Example:
paragraph 1
\[math 1\]
paragraph 2
Use a final filter to convert this to
paragraph 1
\[math 1\]
paragraph 2
Perhaps you want to have some finer control over whether there should
be a newline between math 1 and paragraph 2, e.g. exploiting the fact
that "\n\n" is exported as "\n\n".
Thus,
paragraph 1
\[math 1\]
paragraph 2
would become
paragraph 1
\[math 1\]
paragraph 2
Cheers,
Rasmus