文本引用-上标数字

文本引用-上标数字

\usepackage[superscript]{cite}在 LaTeX 中使用。但它给出的是“...分析。$^{?}$”。我想要像“...分析。$^{1}$”这样的文本引用。我该怎么做?

\documentclass[Afour,sageh,times]{sagej}

\usepackage[superscript]{cite}

\newcommand\BibTeX{{\rmfamily B\kern-.05em \textsc{i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\def\volumeyear{2015}

\begin{document}

The performance … \cite{Venables et al.}. 

\begin{thebibliography}{99}

\bibitem[Venables et al.(2016)]{Venables et al.}
Venables~WN, Smith~DM and the R Core Team. Notes on R: a programming environment for data analysis and graphics.

\end{thebibliography}

\end{document}

答案1

首先,你可以获得sagej课程这里(下载链接见摘要)。

其次,我建议使用natbib带选项的包super。以下是最小代码

\documentclass{sagej}

\usepackage[super]{natbib}

\begin{document}

This is the cited text \cite{jd12}, here is another one \citet{jd13}
and here \citep{jd14}

\bibliographystyle{unsrtnat}
\bibliography{mybib}{}

\end{document}

包含mybib.bib

@article{jd12,
 author={Doe, J. and Bar, F. and Smith, J.},
 title={Some title 1},
 journal={Some journal},
 year={2012},
}

@article{jd13,
 author={Doe, J. and Smith, J. and Bar, F.},
 title={Some title 2},
 journal={Some journal},
 year={2013},
}

@article{jd14,
 author={Doe, J. and Simpson, H. and Bar, F.},
 title={Some title 3},
 journal={Some journal},
 year={2014},
}

编译后,我得到了以下 pdf,您可能会注意到不同的引用命令(上面使用)的作用。我猜你想要的是 产生的结果\cite{}在此处输入图片描述

相关内容