文章中上标引用的括号

文章中上标引用的括号

我需要更改参考书目引文的自定义格式以满足会议的要求。在这种情况下,我使用的是参考书目样式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,以及选项superround

\usepackage[round,super]{natbib}

并替换unsrtunsrtnat

参考书目中的数字排版由 控制\@biblabel。这是一种重新定义它的可能方法。

\makeatletter
\renewcommand{\@biblabel}[1]{#1.}
\makeatother

相关内容