我需要更改參考書目引文的自訂格式以滿足會議的要求。在本例中,我使用的是參考書目風格article
的文檔。unsrt
引文應具有以下標題中的內容(括號內的上標引文):
除此之外,我需要參考書目採用以下格式:
我已經嘗試過中提出的解決方案這個帖子但它不適用於article
文件類型。我嘗試了下面的程式碼,但沒有引入括號。而且,我不知道如何更改參考書目的格式以使其適應要求。
\documentclass[a4paper,12pt,oneside]{article}
\usepackage[superscript]{cite}
\renewcommand\citeleft{(}
\renewcommand\citeright{)}
\begin{document}
The reference point\cite{Camci2009} in the text\cite{Ben-Daya2009} should be formatted thus\cite{Berdinyazov2009}.
\bibliographystyle{unsrt}
\bibliography{mybib}
\end{document}
答案1
另一種方法是使用和 選項natbib
來代替和。cite
super
round
\usepackage[round,super]{natbib}
並替換unsrt
為unsrtnat
.
參考書目中數字的排版由 控制\@biblabel
。這是重新定義它的一種可能的方法。
\makeatletter
\renewcommand{\@biblabel}[1]{#1.}
\makeatother