有没有办法让 LaTeX 文档中的所有内容,甚至是文本,都居中?
答案1
除了使普通文本居中之外,您可能还希望使章节标题居中。
这可以通过加载sectsty
包并发出
\allsectionsfont{\centering}
此外,为了使多行数学居中,请使用gather
环境。
梅威瑟:
\documentclass{book}
\usepackage{amsmath}
\usepackage{sectsty}
\allsectionsfont{\centering}
\usepackage{lipsum}
\begin{document}
\centering
\chapter{A chapter}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
\section{A section}
\lipsum[1]
\subsection{A subsection}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
\begin{gather*}
a+b=c\\
x^2+y^2=z^2
\end{gather*}
\end{document}
输出:
答案2
您可以\centering
在文档开头之后放置一个命令。
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\centering
\lipsum
\end{document}