双面时文章类别中的标题页

双面时文章类别中的标题页

我在设置带有文章类别的标题页时遇到了麻烦。

我的问题和这里一样,但除了这个例子之外,我还使用了双面文档。如果我在这里添加标题页选项,标题页不会居中对齐,而是以双面样式对齐。但是,对于打印,我更喜欢居中对齐的标题页。这怎么可能呢?

我怎样才能让 \maketitle 使用文章类创建单独的标题页?

\documentclass[titlepage,twoside]{article}

\begin{document}

\title{An example}
\author{Me}
\date{Today}
\maketitle

\section{First Section}
Hello world.

\end{document}

答案1

您可以使用geometry包并修复hmarginratio,然后恢复原始布局。

\documentclass[titlepage,twoside]{article}
\usepackage[pass,showframe]{geometry}       %% showframe just for demo

\begin{document}
\newgeometry{hmarginratio=1:1}    %% make layout symmetric
\title{An example}
\author{Me}
\date{Today}
\maketitle
\restoregeometry              %% restore the layout
\section{First Section}
Hello world.

\end{document}

在此处输入图片描述

相关内容