我正在设计文档的标题页memoir
。我的文档使用的是 12pt 字体,并且我正在使用一些内部使用的标题模板/宏\Large
,\Small
并且期望我的页面标题为 10 pt。由于我不想将这些命令更改为绝对字体大小,因此我加载了size10.clo
建议加载以暂时切换回 10pts这里我也看到了这里我可以使用 将页面标题居中adjustwidth
。但不幸的是,当我结合这两种解决方案时,我的标题不再居中:
有什么想法可以让我把标题居中,同时保持\Large
命令与 10pts 字体相关?
平均能量损失:
\documentclass[a4paper,12pt]{memoir}
\usepackage{lipsum}
\begin{document}
{
\makeatletter\let\newcommand\renewcommand\input{size10.clo}
\begin{titlingpage}
\calccentering{\unitlength}
\begin{adjustwidth*}{\unitlength}{-\unitlength}
\begin{center}
\rule[0.5ex]{\linewidth}{1pt}\\[\baselineskip]
\Large Hello
\rule[0.5ex]{\linewidth}{1pt}\\[\baselineskip]
\end{center}
\end{adjustwidth*}
\end{titlingpage}
}
\lipsum[1-2]
\end{document}