所以这可能是一个非常基本的问题,但我找不到任何相关信息。
在我业余的 LaTeX 排版风格中,出于各种原因,我有时会想在随机位置换行。我通常会使用\\\\
,它会给出一个未满警告,但编译正常。
我已经使用 LaTeX 很多次了,因此有一点值得思考:
- 为什么编译器不推荐这样做?
- 我应该做什么呢?
例子
This is a paragraph where I write some stuff
\\\\
This is a paragraph which I might want to clearly delimit.
I guess I have a hard time coming up with an example, since
a quotation or a pancake recipe would probably be better
off contained in its own figure.
\begin{lemma} (Impossibility of nice typecasting lemma)
Let A be some arbitrary typecasting rule. Assume mathematician B wants to ignore it.
\\\\
Then maybe I want to separate the assumptions and the conclusion of the lemma very clearly.
这似乎是一个典型的“这是可行的,但你为什么要这么做?”问题。一般来说,我认为空行后的缩进几乎总是看起来有点奇怪。也许排版不是特立独行的地方,所以如果我在这里违反了一般准则,我想最好知道。
答案1
我假设你说的“rowbreak”是指“linebreak”。如果不是,请忽略我的回答。我想也许你想要的是 \\ 而不是 \\\\。除非你想要两个换行符,在这种情况下你可以像这样跳过一行,得到一个新段落:
Text of a new paragraph.
\noindent Text of the rest of the paragraph, with a gap of one line between the two.
如果我误解了你的问题,你能否提供一个你想要实现的目标以及你如何尝试编写代码的例子?
答案2
添加parskip package
你的序言:
\usepackage{parskip}
您可以保留////
示例中的,而改用空格
您也可以设置距离
% Set distance between paragraphs (absolute distance and "rubber")
\setlength{\parskip}{0.4cm plus2mm minus2mm}
% No indent,
\setlength\parindent{0pt}