参考文献的章节标题显示错误编号

参考文献的章节标题显示错误编号

所以我下载了一个好看的文章模板,其中的章节标题具有自定义外观。但现在参考文献标题旁边的数字与上一节的数字相同。

我该如何解决这个问题?我偏爱不显示任何数字,但显示正确的部分编号也可以。

\documentclass[twoside]{article}
\usepackage{titlesec}% Allows customization of titles
\titleformat{\section}[block]{\large\scshape\centering{\Roman{section}.}}{}{1em}{} % Change the look of the section titles 

\begin{document}

\section{Introduction}
\subsection{Problem description}

Blah blah blah.
\subsection{Another section}

Another section.
\begin{thebibliography}{9}

\bibitem{ref}
  some reference.
\end{thebibliography}

\end{document}

答案1

用于\titleformat{name=\section,numberless}更改未编号部分的格式(此处为参考书目)。

\documentclass[twoside]{article}
\usepackage{titlesec}
\titleformat{\section}[block]{\large\scshape\centering{\Roman{section}.}}{}{1em}{}
\titleformat{name=\section,numberless}[block]{\large\scshape\centering}{}{0pt}{}

\begin{document}

\section{Introduction}
\subsection{Problem description}

Blah blah blah.
\subsection{Another section}

Another section.
\begin{thebibliography}{9}

\bibitem{ref}
  some reference.
\end{thebibliography}

\end{document}

在此处输入图片描述

相关内容