如何移除参考项周围的支架

如何移除参考项周围的支架
\documentclass[12pt]{article}
\begin{document}
\bibliographystyle{plain}
IG, suggested by  \cite{A2016} 

\begin{thebibliography}{18}
\bibitem[A (2016)]{A2016}
S. A. xxxxx. Springer, ny, 2016.

\end{thebibliography}
\end{document}

答案1

\bibliographystyle{plain}我建议您用替换该指令\usepackage[round]{natbib}(并删除 的可选参数中作者姓名和年份之间的空格\bibitem)。

在此处输入图片描述

\documentclass[12pt]{article}
\usepackage[round]{natbib}
\begin{document}
\dots\ IG, suggested by \cite{A2016} 

\begin{thebibliography}{18}

\bibitem[Author(2016)]{A2016}
Sam Author xxxxx. Springer, ny, 2016.

\end{thebibliography}
\end{document}

答案2

cite包允许方便地修改分隔符:

\documentclass[12pt]{article}

\usepackage[biblabel]{cite}
\renewcommand{\citeleft}{}
\renewcommand{\citeright}{}

\begin{document}
IG, suggested by  \cite{A2016} 

\begin{thebibliography}{18}
\bibitem[A (2016)]{A2016}
S. A. xxxxx. Springer, ny, 2016.

\end{thebibliography}
\end{document}

在此处输入图片描述

相关内容