\center 居中,但仅限于页面顶部

\center 居中,但仅限于页面顶部

对于一篇文章,我试图将我的姓名和地址置于中心位置,但\center将相关信息放在页面顶部标题之前,而不是我想要的位置(标题之后)。如何才能将其置于\center我想要的位置?

答案1

你可以试试\begin{centering}Your Name\\ Your Address\end{centering}

然而,这不是好的风格,因为你混合了格式和内容。

相反,也许您可​​以使用\author{Your Name\\Your Address}\maketitle

您也可以在这里查找答案: https://tex.stackexchange.com/

答案2

也许你会对这个 LaTeX 文件的骨架感兴趣。基本上我只是将 @whoplisp 的答案扩展为一个最小的工作示例。

\documentclass{article}

\author{My name\\My address}
\title{The title of my article}
\date{\today}

\begin{document}

\maketitle

\section{A section}
Some text

\end{document}

此外,您应该注意到center是一个环境,用作\begin{center}Some text\end{center},而是\centering一个声明,用于将其所在的组居中。例如,它在图中经常使用:\begin{figure}\centering\caption{This is the caption}\includegraphics{file}\end{figure}

相关内容