[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] [POLL] Syntax change: make \[...\] non-inline (+1)
From: |
Rasmus |
Subject: |
Re: [O] [POLL] Syntax change: make \[...\] non-inline (+1) |
Date: |
Mon, 04 Aug 2014 10:55:38 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) |
Hi,
Federico Beffa <address@hidden> 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