更改联程航班

更改联程航班

我不知道为什么,但我的代码提供了具有不同 interline 值的文本。为了更清楚,让我展示我的代码:

\documentclass[12pt,a4paper, english]{article} 
\usepackage{graphicx,amssymb} 
\textwidth=15cm \hoffset=-1.2cm 
\textheight=25cm \voffset=-2cm 

\pagestyle{empty} 

\date{\today} 
\def\keywords#1{\begin{center}{\bf Keywords}\\{#1}\end{center}} 

\begin{document}

\title{Title}

\author{\textit{Author} \\ 
        University\\\\
       }

\maketitle

\thispagestyle{empty}

\keywords{keywords}
%
%
\vspace{0.7cm}
{\Large{\textbf{Introduction}}}\\\\
%
Text 1
\begin{equation}
    u^{k+1}
\end{equation}
Text 2
%
\begin{footnotesize}
\begin{thebibliography}{9}
 %
\bibitem{blabla} 
Blabla.
\end{thebibliography}
\end{footnotesize}
\end{document}

结果如下所示:

在此处输入图片描述

如您所见,公式下方的文本的行距比之前的要小。如果我删除 \begin{footnotesize} 和 \end{footnotesize}(参考书目),我就会得到我想要的结果(两个文本的行距相同)。有没有建议让参考书目有相同的行距和较小的字体大小?谢谢!

答案1

每当您看到时\\\\,您就知道文档有问题。总是

另外,你似乎担心空白行:别担心。它们很好!

您遇到的问题确实是在 之前没有空行,因此当已经生效\begin{footnotesize}时,最后一段会被分成几行进行排版。\footnotesize

这是您的文档的编辑版本(应避免使用\hoffset和)。\voffset

\documentclass[12pt,a4paper]{article} 
\usepackage{amsmath,amssymb}
\usepackage[
  textwidth=15cm,
  textheight=25cm,
  heightrounded,
]{geometry}

\usepackage[nopar]{lipsum} % for mock text

\newcommand\keywords[1]{\begin{center}\textbf{Keywords}\\#1\end{center}}

\pagestyle{empty} 

\begin{document}

\title{Title}
\author{%
  \textit{Author}\\
  University
}
\date{\today} 
\maketitle

\thispagestyle{empty}

\keywords{keywords}

\section*{Introduction}

\lipsum[1]
\begin{equation}
    u^{k+1}
\end{equation}
\lipsum[2]

\begin{footnotesize}\renewcommand{\Large}{\normalsize}
\begin{thebibliography}{9}

\bibitem{blabla} 
Blabla.

\end{thebibliography}
\end{footnotesize}

\end{document}

这个lipsum包只是用来填充无意义的文本的。我还缩小了参考文献的标题的大小。

在此处输入图片描述

相关内容