行距问题

行距问题

我用 Google 搜索了一下,但无法解决以下情况:基本上,LaTeX 出于某种原因决定将我的文本第一部分(主标题和小标题之间)的行距设置得比平时更大,如下例所示。

只是想尽可能简单地解决这个问题。

\documentclass[a4paper,12pt]{article}
\linespread{1.3}
\begin{document}
\begin{LARGE}
\begin{center}
Topic
\end{center}
\end{LARGE}
wrong
\\
\\
spacing
\\
\\
here
\\
\\
wrong
\\
\\
spacing
\\
\\
here
\\
\\
\begin{Large}
\begin{center}
Introduction 
\end{center}
\end{Large}
normal
\\
\\
spacing
\\
\\
here
\\
\\
normal
\\
\\
spacing
\\
\\
here
\end{document}

答案1

通过使用\\转到新行,并且从不输入空行或\par,LaTeX 永远不会退出水平模式。然而,第二个Large环境(“介绍”)隐式包含\par\end处理中。

(la)tex 使用基线距离在本段末尾生效(即,直到\par处于水平模式的 为止的所有内容)以设置刚刚结束的段落。因此,“主题”和“简介”之间的线条设置为\baselineskip适合 12pt 类型的 。从“简介”(以 结尾)到示例末尾没有这样的大小重置\par,因此设置了“正常”基线。

\par在文件中插入空行或间隔有很多充分的理由,这是其中之一。

阅读一些关于乳胶的基本文档是个好主意。”Latex 的简单介绍“是一个很好的起点。Latex 不是一个完全直观的系统;通过谷歌随机搜索答案并不一定会让人找到最好的答案,也不一定会养成良好的习惯。

答案2

使用换行符告诉 LaTeX 新段落从哪里开始。

我不建议使用\\:它很可能无法实现您想要的功能,并且还会向您发送未满框错误。如果您想要某种列表,则有三种基本类型:enumerateitemizedescription。我已enumerate在下面进行了说明。

此外,还有一个enumitem包允许您将各种参数传递给列表环境,以控制大量间距(垂直和水平)。我在下面说明了这个相当激烈的版本(我不推荐我的值选择)。

\documentclass[a4paper,12pt]{article}
\usepackage{lipsum}
\usepackage{enumitem}
\linespread{1.3}
\pagestyle{empty}
\begin{document}

\begin{center}\LARGE
Topic
\end{center}

\lipsum[1]

\begin{center}\Large
Introduction 
\end{center}

\lipsum[1-2]

\begin{enumerate}
\item first line
\item second line
\item third line
\end{enumerate}

\noindent%
Before an very scrunched up item list (probably not a good choice)
with a big indentation before each item:
\begin{itemize}[topsep=0ex,itemsep=0ex,parsep=0ex,leftmargin=4em]
\item apple
\item orange
\item peach
\end{itemize}
After list

Maybe a list is not what you desire; maybe you're trying to write
questions for an exam or quiz and want to leave spaces for answers.
You can force a prespecified vertical space by using
\verb=\vspace{...}= where \verb=...= is some length.

\noindent
\textbf{Question 1:}  What is the meaning of life?
\vspace{1in}

\noindent
\textbf{Question 2:}  Is this really a questions?

But there's not much space left here for an answer.

\end{document}

请注意,图像中的大换行是由于分页造成的。

在此处输入图片描述

相关内容