答案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}