如何从 Latex 文章中的参考文献中删除数字?

如何从 Latex 文章中的参考文献中删除数字?

我不知道如何从以下 latex 中的参考文献中删除数字。有什么建议吗?

\documentclass[twocolumn, amsmath,amssymb, aps]{revtex4-1}

\usepackage[T1]{fontenc}
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage{array}
\usepackage{appendix}

\begin{document}

\preprint{APS/123-QED}

\title{Detecting Local Units in {\bf  {\it C. elegans}} Nervous System}% Force line breaks with \\
\thanks{C.elegans}%



blah bla blah 


\nocite{*}

\begin{thebibliography}{10}


\bibitem{parcellation1}Brodmann K., (1909) Vergleichende Lokalisationslehre der Grosshirnrinde. Johann Ambrosius Barth Verlag, Leipzig.
brosius Barth Verlag, Leipzig.
\bibitem{parcellation2}Penfield W., Boldrey, E., (1937) Somatic motor and sensory representation in the cerebral cortex of man as studied by electrical stimulation. Brain 60: 389-443.
\bibitem{parcellation3}Toga A. W., Thompson P. M., Mori S., Amunts K., and Zilles K. (2006). Towards multimodal atlases of the human brain. Nat. Rev. Neurosci. 7: 952-966. $doi: 10.1038/nrn2012$




\end{thebibliography}



\end{document}

以上是代码,但我不明白为什么它也会产生数字。谢谢

答案1

您在评论中写道:

我想引用作者的名字

revtex4-1要在使用文档类(自动加载包)创建作者年份样式的引文标注natbib,最好的方法是(a)学习如何使用 BibTeX,(b)选择一种生成作者年份样式引文标注的书目样式,以及(c)提供说明

\setcitestyle{authoryear,round}

在序言中。当然,使用\citet\citep说明来创建引文标注。

不过,您似乎没有使用 BibTeX。如果您手动构建参考书目,则需要在每个\bibitem命令的可选参数中提供一些信息,如下面的代码所示。

如果您希望在 bibentries 之间插入一些空格,我建议您在序言中提供以下命令:

\AtBeginDocument{\setlength\bibsep{1ex}}

最后一点:完全手工创建参考书目非常繁琐,而且很容易出错。学习如何使用 BibTeX 创建格式化参考书目将对您大有裨益。

在此处输入图片描述

\documentclass[twocolumn,amsmath,amssymb,aps]{revtex4-1}

% Modify the behavior of the natbib package:
\setcitestyle{authoryear,round} 

\begin{document}
\preprint{APS/123-QED}
\title{Detecting Local Units in \textit{C.\ elegans} Nervous System\thanks{C.~elegans}}
\maketitle

\citet{parcellation1}

\citep{parcellation2}

\citet{parcellation3}

blah 

blah

blah

\begin{thebibliography}{9}

\bibitem[Brodmann(1909)]{parcellation1}Brodmann K. (1909) Vergleichende Lokalisationslehre der Grosshirnrinde. Johann Ambrosius Barth Verlag, Leipzig.

\bibitem[Penfield and Boldrey(1937)]{parcellation2}Penfield W., Boldrey, E. (1937) Somatic motor and sensory representation in the cerebral cortex of man as studied by electrical stimulation. Brain 60: 389--443.

\bibitem[Toga et~al.(2006)]{parcellation3}Toga A. W., Thompson P. M., Mori S., Amunts K., and Zilles K. (2006). Towards multimodal atlases of the human brain. Nat.\ Rev.\ Neurosci.\ 7: 952--966. doi: \url{10.1038/nrn2012}.

\end{thebibliography}
\end{document}

答案2

这对我有用:

\section*{Bibliography}
\begin{thebibliography*}{}
\bibitem[Abramowitz and Saunders, 2008]{Abramowitz2008}
Abramowitz, A. I., and Saunders, K. L. (2008). 
\newblock Is polarization a myth?
\newblock {\em The Journal of Politics, 70(2), 542-555.}
\end{thebibliography*}

相关内容