开始新段落的排版规则

开始新段落的排版规则

有点令人尴尬的问题,但我仍然希望得到一个可以理解的答案:

什么时候开始段落缩进(我的意思是新段落)?在我的编辑器中,我只使用一个空行或\par。我写了一篇较长的文本,我感觉我添加了不少新段落,但不知道这样做是否正确。

例如:如果我\\在冒号后添加,从印刷上来说可以吗?或者我应该使用段落缩进(只需查看我的 MWE)?或者两者都不可以?

\documentclass{scrartcl}

\begin{document}

\section{Example}

We want to dedicate ourselves to a small, spontaneous example:\\Should there be a paragraph indent, or not?

\end{document}

对阵

\documentclass{scrartcl}

\begin{document}

\section{Example}

We want to dedicate ourselves to a small, spontaneous example:\par Should there be a paragraph indent, or not?

\end{document}

对阵

\documentclass{scrartcl}

\begin{document}

\section{Example}

We want to dedicate ourselves to a small, spontaneous example: Should there be a paragraph indent, or not?

\end{document}

答案1

您永远不应\par在文档中使用(使用空白行),也几乎从不\\在对齐方式之外使用,例如aligntabular。我还建议您在 TeX 源代码中将行设置为合理的长度,您的编辑器可能会“软换行”,但其他工具(例如本网站)的长行就不那么方便了。

您的问题的其余部分实际上与主题无关,因为这是语法问题,而不是 TeX 标记问题。在英式英语中,冒号不是句子的结尾,因此后面应该有一个空格,并且后面的单词不大写,尽管美式英语显然更喜欢大写: http://www.sussex.ac.uk/informatics/punctuation/colonandsemi/colon

如果接下来是一个列表,请不要在列表前使用空行,否则 LaTeX 会将下面的文本设置为同一段落的一部分。

在此处输入图片描述

\documentclass{article}

\begin{document}
Some text about something. Some text about something. Some text about something. 
Some text about something. Some text about something. Some text about something. 
This is a mid sentence displayed list:
\begin{enumerate}
\item red;
\item blue;
\item green;
\end{enumerate}
and the sentence ends here.

But  the following list is a complete paragraph.

\begin{enumerate}
\item Red;
\item blue;
\item green.
\end{enumerate}

This following text is therefore a new paragraph.

\end{document}

答案2

命令\par或空白行,像许多其他命令\section{}或空白行一样\tile{} ,具有语义含义,而不是印刷(格式化)含义。在这种情况下,\par表示段落的结尾,即一组关于同一想法的句子,因此,下一个文本应相应地格式化,但不一定总是以相同的方式。它可以是换行符加缩进或/和垂直跳过,缩进较少或较多和/或垂直跳过缩进较少或较多。相反,没有\\任何语义含义,只是一种格式化顺序,只会换行,并且 它没有结束该段落,并且总是产生相同的印刷效果,而\par根据文档设置则能产生不同的效果。

换句话说,在冒号后面,可以是 a \par(如果主题发生变化) 或者什么都不用做 (接下来的单词是句子的一部分,或者是有关同一主题的新句子),但绝不可以是\\

经验法则:如果您正在使用 \\但它不是类似环境中一行的结尾tabular,那么您可能做错了什么。

相关内容