当我输入这个
C = B log(1+SNR)
270.88 = 200 log(1+SNR)
这两行打印在同一行。我可以使用强制换行,\\
但这很烦人。有没有办法在源代码中的每个换行符后自动强制换行?
答案1
使用\obeylines
。这样,源中的每个换行符都是输出中的换行符。如果您在本地需要此行为,请将其括在括号中,例如{\obeylines...}
。
\documentclass{article}
\begin{document}
\obeylines
Some text
Some text in a new line
\end{document}