\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}