回忆录类中 \paragraph 和 \bibliography 标题的居中

回忆录类中 \paragraph 和 \bibliography 标题的居中

我目前正在写一篇论文。研究生院要求我进行以下文体修改:

全部标题居中

我正在使用回忆录包。我能够使用以下方法将章节、部分、小节和小节居中

\renewcommand{\chapnamefont}{\chaptitlefont\centering}
\setsecheadstyle{\bfseries\Large\centering}
\setsubsecheadstyle{\bfseries\large\centering}
\setsubsubsecheadstyle{\bfseries\centering}

我必须这样做,但无法将标题居中:

段落

目录

图列表

表格列表

参考书目(natbib 包)

缩写列表(首字母缩略词包)

符号列表(nomencl 包)

我能做什么?谢谢!Philipp

答案1

有了序言中的这些行,您提到的所有标题都将居中(除了paragraph不作为标题的标题)

\renewcommand*{\printchapternum}{\centering\chapnumfont \thechapter}
\renewcommand*{\chaptitlefont}{\Huge\bfseries\centering}
\setsecheadstyle{\Large\bfseries\centering}
\setsubsecheadstyle{\large\bfseries\centering}
\setsubsubsecheadstyle{\normalsize\bfseries\centering}

梅威瑟:

\documentclass{memoir}

\renewcommand*{\printchapternum}{\centering\chapnumfont \thechapter}
\renewcommand*{\chaptitlefont}{\Huge\bfseries\centering}
\setsecheadstyle{\Large\bfseries\centering}
\setsubsecheadstyle{\large\bfseries\centering}
\setsubsubsecheadstyle{\normalsize\bfseries\centering}

\begin{document}
\tableofcontents
\chapter*{A chapter}
\chapter{A chapter}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document} 

输出:

在此处输入图片描述

在此处输入图片描述

如果您确实想要\paragraph像其他分段命令一样运行,还请在序言中添加以下几行:

\setparaheadstyle{\normalsize\bfseries\centering}
\setbeforeparaskip{-3.25ex plus -1ex minus -.2ex}
\setafterparaskip{1.5ex plus .2ex}

相关内容