我在寫履歷,希望我的著作從新到舊排列,且編號從大到小:
\begin{thebibliography}{99}
\newcounter{pointnumber}
\setcounter{pointnumber}{8}
\makeatletter
\renewcommand*{\@biblabel}[1]{[\thepointnumber \addtocounter{pointnumber}{-1}]}
\makeatother
\bibitem{my2017paper} my 2017 paper
\bibitem{my2016paper} my 2016 paper
...
\bibitem{my2011paper} my 2011 paper
\end{thebibliography}
共7篇著作,且成功從7編號到1。
但內文\cite的時候,號碼用是預設的1到7,無法更新成我新設的顛倒編號。
請問我該怎麼改碼?謝謝。