将修改后的图表列表居中显示标题

将修改后的图表列表居中显示标题

考虑以下代码:

\documentclass[12pt]{book}
\usepackage{graphicx,caption}
\usepackage[T1]{fontenc} % Allows one to make bold smallcaps.


\newcommand\NewCaption[2]{\caption[#1]{\textbf{\scshape{#2 #1}}}}

\renewcommand{\listfigurename}{\LARGE\textbf LIST OF ILLUSTRATIONS}


\makeatletter
\renewcommand*{\l@figure}{%         % Figure label command
  \scshape                          % Small caps
  \bfseries                         % Bold
  \@dottedtocline{1}{1.5em}{2.3em}  % Dotted line
}
\makeatother


\begin{document}
\thispagestyle{empty}

\begin{figure}[!htb]
\centering
  \includegraphics[width=.75\linewidth,angle=0]{example-image-a}
  \captionsetup{labelformat=empty} \vspace{10pt}
    \NewCaption{ImageA Caption}{\Large}
  \label{fig:Image Caption}
\end{figure}


\begin{figure}[!htb]
\centering
  \includegraphics[width=.75\linewidth,angle=0]{example-image-b}
  \captionsetup{labelformat=empty} \vspace{10pt}
    \NewCaption{ImageB Caption}{\Large}
  \label{fig:Image Caption}
\end{figure}

\listoffigures
\end{document}

生成图片列表显示:

在此处输入图片描述

问题:我该如何修改命令\renewcommand{\listfigurename}{\LARGE\textbf LIST OF ILLUSTRATIONS}以使标题居中?我无法毫无错误地完成此操作。

谢谢。

相关内容