关于latex:在不显示命令的情况下跳过行

关于latex:在不显示命令的情况下跳过行

我想知道在 latex 中是否可以通过按 Enter 键正常跳过一行来更改一行。例如,我希望文档将按 Enter 键正常跳过的行识别为文档中的新行。

\begin{document}
This is a line

This is also a line
\end{document}

代替

\begin{document}
This is a line
\newline 
This is also a line
\end{document}

答案1

您的问题不太清楚,也没有提供示例文档。

\documentclass{article}

\begin{document}

This is a line

This is also a line

\end{document}

是两段的标准标记,不添加额外的垂直空间:

在此处输入图片描述

也许你正在使用一个类,它使用垂直空间来分隔段落而不是缩进,例如

\documentclass{article}
\usepackage{parskip}
\begin{document}

This is a line

This is also a line

\end{document}

产生

在此处输入图片描述

无论如何,这是一份两段式的文件,与

\documentclass{article}

\begin{document}

This is a line\newline
This is also a line

\end{document}

这是一个带有强制换行符的单段文档。

在此处输入图片描述

就像这样:

\documentclass{article}
\usepackage{parskip}
\begin{document}

This is a line\newline
This is also a line

\end{document}

在此处输入图片描述

相关内容