不要用空格代替换行符

不要用空格代替换行符

有没有办法阻止 TeX 用空格替换新行?

example
text

second
    example
        text

导致

在此处输入图片描述

但我想要的是

在此处输入图片描述

任何帮助是极大的赞赏。

答案1

该空格称为尾随空格。但即使你删除行末的空格,TeX 也会在读取下一行时插入一个空格。因此,要删除它,请%在末尾插入,就在最后一个字符之后。

在此处输入图片描述

平均能量损失

\documentclass[11pt,a4paper]{report}

\begin{document}
\begin{minipage}{.5\linewidth}
\begin{verbatim}
example
text

second
    example
        text
\end{verbatim}
example
text

second
    example
        text
\end{minipage}%
\begin{minipage}{.5\linewidth}
\begin{verbatim}
example%
text

second%
    example%
        text
\end{verbatim}
example%
text

second%
    example%
        text
\end{minipage}

\vskip 1cm 
\begin{minipage}{.5\linewidth}
\begin{verbatim}
example
text
%
second
    example
        text
\end{verbatim}
example
text
%
second
    example
        text
\end{minipage}%

\end{document}

相关内容