使用包回忆录,我在创建我的(非常简单的)自定义标题页时遇到了一些麻烦。
在序言中,我有这样的内容:
\documentclass[medievalpage,twosides,twocolumn,pdftex,final]{memoir}
因此,我得到了两列文本,这正是我想要的。我对标题的定义如下:
\newcommand*{\titleDS}{\begingroup
\newlength{\drop}
\drop = 0.08\textheight
\centering{
{\Huge{The Title}}\\
{\Large{A funky subtitle}}\\
\vspace*{\drop}
{by The Author}\\
}
\thispagestyle{title}
\endgroup}
最后,在文档主体中,我有:
\pagestyle{empty}
\titleDS
\clearpage
发生的情况是标题位于左列的中心,而不是在正中央。
我做错了什么?我觉得这其实很简单,只是我太笨了。
答案1
您忘记输入\titleDS
环境titlingpage
:
\begin{titlingpage}
\titleDS
\end{titlingpage}
我的版本回忆录不知道选项medievalpage
,只知道命令\medievalpage
。永远不要使用显式选项pdftex
(除了庄稼包)。正确的选项是twoside
而不是twosides
。