我希望参考书目的标题中有一个“B”,类似于附录中的“A”(classicthesis)

我希望参考书目的标题中有一个“B”,类似于附录中的“A”(classicthesis)

在 classicthesis 中,附录开头有一个 eulerchapternumber 格式的“A”。为了保持一致性,我也想为参考书目添加这个。有没有办法手动完成此操作而不将参考书目变成章节?

答案1

如果你有

\appendix
\chapter{Appendix}

您得到“A”是因为这是附录中的第一章,并且附录使用字母编号。

获取参考书目的“B”并不困难:只需使其遵循(单个)附录,并将相关命令更改为发出,\chapter而不是\chapter*

\begin{filecontents*}{\jobname.bib}
@article{test,
  author={A. Uthor},
  title={Title},
  journal={Journal},
  year=2016,
}
\end{filecontents*}

\documentclass{scrbook}
\usepackage{classicthesis}
\usepackage{etoolbox}

\makeatletter
\patchcmd{\bib@heading}{\chapter*}{\chapter}{}{}
\makeatother

\begin{document}
\frontmatter
\tableofcontents

\mainmatter
\appendix
\chapter{Appendix}

This is just for citing: \cite{test}

\bibliographystyle{plain}
\bibliography{\jobname}

\end{document}

enter image description here

enter image description here

相关内容