报告中有空白

报告中有空白

每次我按两次回车键省略一行时,我的编辑器都会生成一个新段落。我想关闭此功能,只使用明确\par命令开始新段落。

有人知道怎么做吗?我正在使用 TeXmaker(在 Ubuntu 上)。

答案1

可以做吧:

\documentclass{article}

\AtBeginDocument{\endlinechar=`\ }

\begin{document}

Something here. After a blank line will there be a new paragraph? Here is a real par\par

Something here. After a blank line will there be a new paragraph?

Here is a real par.\par

And text after it.

\end{document}

在此处输入图片描述

既然你知道这是可能的,就不要这么做。如果你想要分开句子,只需写

A sentence.
%
Another one

但我不明白这两种方法如何使你的打字稿更具可读性。

相关内容