LaTeX 中的 Word 样式标题

LaTeX 中的 Word 样式标题

我想知道是否有一种方法可以在 LaTeX 中创建一个类似于 Microsoft Word 的页眉,以供挑剔的老师使用。

答案1

我认为你可能会喜欢这个fancyhdr包,MWE 在下面

\documentclass{article}
\usepackage{fancyhdr} % for headers and footers
\usepackage{lipsum}   % for dummy text

\begin{document}

% headers
\fancyhead[L]{left head}
\fancyhead[C]{center head}
\fancyhead[R]{right head}
% footers
\fancyfoot[L]{left foot}
\fancyfoot[C]{center foot}
\fancyfoot[R]{right foot}

% need to specify the pagestyle as fancy
\pagestyle{fancy}
\lipsum

% if you want a non-fancy page, use ... 
\pagestyle{empty}
\lipsum
\end{document}

请注意,如果您有章节、节和小节,则会fancyhdr自动分配标题 - 请参阅下面的 MWE。这些当然可以进行调整 - 有关详细信息,请参阅文档。

\documentclass{article}
\usepackage{fancyhdr} % for headers and footers
\usepackage[english]{babel}
\usepackage{blindtext}   % for dummy text

\begin{document}

% need to specify the pagestyle as fancy
\pagestyle{fancy}

\blinddocument

\end{document}

命令\pagestyle可以是emptyplain或 (一旦加载fancyhdrfancy。正如 Doncherry 所评论的,如果您使用\pagestyle{plain},那么它将影响当前页面和所有后续页面。如果您使用\thispagestyle{plain}它,它将仅影响当前页面。

文章的标准页面样式是\pagestyle{plain}

相关内容