更改书目起始编号

更改书目起始编号

\begin{thebibliography}我目前在科学论文末尾使用常用字段来标明参考文献。引用数从[1][19],一如既往。

我想改变这一点。我希望引用的起始数字为[9],到[27]

我该怎么办?

答案1

很奇怪,但是如果你愿意……

\documentclass[]{article}

\begin{document}


Let us cite \cite{a1},  \cite{a2} and \cite{a3}.

\begin{thebibliography}{99}
\makeatletter
\addtocounter{\@listctr}{8}
\makeatother

\bibitem{a1}
A1
\bibitem{a2}
A2
\bibitem{a3}
A3
\end{thebibliography}

\end{document}

在此处输入图片描述

答案2

取自:https://latex.org/forum/viewtopic.php?t=15487

\begin{document}

\let\oldthebibliography=\thebibliography
\let\oldendthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]{
    \oldthebibliography{#1}
    \setcounter{enumiv}{8}                        % Change this number as required
}{\oldendthebibliography}

\end{document}

答案3

(抱歉将此作为答案发布,但我没有足够的 karma 来评论)除了 Nirmal 的答案之外:thebibliography只有在使用 BiBTeX 时才需要重新定义。否则,您只需\setcounter{enumiv}{8}在 下添加行即可\begin{thebibliography}[..]

相关内容