如何使摘要居中显示而不是左对齐(仅标题)

如何使摘要居中显示而不是左对齐(仅标题)

我想知道如何将目录的标题居中,但只是单词概括

这是我的包裹:

\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{setspace}
\usepackage{amssymb}
\usepackage{indentfirst}
\usepackage[superscript]{cite}
\usepackage{geometry}
\geometry{top=15mm,left=15mm}

在此处输入图片描述

答案1

在此处输入图片描述

您没有提供 MWE,但这里有一个可以解决它的方法。目录的标题存储在 中\contentsname。因此,您可以使用\renewcommand{\contentsname}{\hspace{\fill} Summary \hspace*{\fill}}将其居中。

\documentclass[12pt]{article}

\usepackage{amsmath}
\usepackage{setspace}
\usepackage{amssymb}
\usepackage{indentfirst}
\usepackage[superscript]{cite}
\usepackage[showframe]{geometry}
\geometry{top=15mm,left=15mm}

\usepackage{tocloft}
\newcommand{\toctitlefont}{\LARGE \bfseries}
\renewcommand{\cfttoctitlefont}{\centering \toctitlefont}

\renewcommand{\contentsname}{\hspace{\fill} Summary \hspace*{\fill}}

\usepackage{blindtext}

\begin{document}

\tableofcontents
\blinddocument

\end{document}

有关的:tocloft如果您想对 ToC 进行详细定制,请使用包。

相关内容