Dekel Tsur <[EMAIL PROTECTED]> writes:

| On Fri, May 03, 2002 at 02:37:19PM +0200, Lars Gullik Bjønnes wrote:
>> Does endfloat like this:
>> 
>> Hello.
>> \begin{figure}%
>> x%
>> \end{figure}
>>  Bar.
>
| Yes, but both % chars has no effect, so we can just write
| Hello.
| \begin{figure}
| x
| \end{figure}
| Bar.

This is where you are wrong...

The version with the '%'s is read by latex as:

"Hello.
\begin{figure}x\end{figure}
 Bar."

and the other is read as

"Hello.
\begin{figure}
x
\end{figure}
 Bar."

With several evironments and commands a '%' will make a visula effect,
usually less whitespace/separation in the output.

So IMHO we should use '%' everywhere we can unless it is wrong to use
it there.

-- 
        Lgb

Reply via email to