如何更改回忆录目录中摘要和致谢的字体样式?

如何更改回忆录目录中摘要和致谢的字体样式?

我正在用 latex 写我的硕士论文memoir。我对摘要和致谢环境有些问题。添加\abstractintoc序言时,两者都出现在目录中,这很好,因为这是我的教授想要的。但是,目录中这两个的字体不同(下图)。我找到并尝试了很多方法,但似乎没有什么能解决我的问题。这是我用于摘要的代码:

{\renewcommand{\abstractname}{\Large\bfseries\sffamily\textcolor{dshs}{Abstract}}}

在此处输入图片描述

答案1

如果您能提供 MWE(从\documentclass...到类似\chapter{...} \end{document})来展示您所做的工作,那将非常有帮助。因此,以下是关于可能解决您问题的猜测 --- 您只显示了结果,而不是您如何得到它。(实际上,我遵循了要求,表现得友善。--- GOM在此处输入图片描述

% memabstocprob.tex  SE 600887
\documentclass{memoir}

\begin{document}
\frontmatter
\tableofcontents

% no idea where \textcolor{dshs} comes from
\renewcommand{\abstractname}{\Large\bfseries\sffamily%\textcolor{dshs}
  {Abstract}}
%\abstractintoc % adds \abstractname into the ToC

\begin{abstract}
\addcontentsline{toc}{chapter}{Abstract} % just adds Abstract into the ToC
THE ABSTRACT TEXT.
\end{abstract}

\mainmatter
\chapter{One}
\section{one}
\end{document}

相关内容