使用TeXShop增添引用文献

TeXShop图形化界面很丰富,完全用不着命令行操作。左上角的排版按钮就相当于编译功能。

\usepackage{cite}
\renewcommand\citepunct{,~}
\renewcommand\citedash{-}

引入cite包,后两条命令用来处理多个引用时,使其显示在一个[]中。

在文件末尾\end{document}之前添加

\bibliography{yourBibFileName}
\bibliographystyle{plain}

告知保存有引用文章信息的文件并设置其类型。yourBibFileName替换为你保存的bib文件名称。

bib文件就是引用的文章信息,新建一个文件,类型设置为TexBib。 可以在==谷歌学术==中搜索相应的参考文献名,然后点击引用,选择其BibTex类型,生成的格式如下:

@inproceedings{abdel2012applying,
  title={Applying convolutional neural networks concepts to hybrid NN-HMM model for speech recognition},
  author={Abdel-Hamid, Ossama and Mohamed, Abdel-rahman and Jiang, Hui and Penn, Gerald},
  booktitle={Acoustics, Speech and Signal Processing (ICASSP), 2012 IEEE International Conference on},
  pages={4277--4280},
  year={2012},
  organization={IEEE}
}

将其一个个都复制到该空白文件中,保存为yourBibFileName.bib。

还需要引用如下包,才能使得引用处拥有超链接能力。

\usepackage[colorlinks,
linkcolor=black,
anchorcolor=black,
citecolor=black]{hyperref}

至此,就可以编译了,在TeXShop中:

  • Latex类型,编译一次
  • 改为BibTex类型,编译一次(针对同一个文件)
  • 再改为Latex文件,编译一次

完成。

你可能感兴趣的:(使用TeXShop增添引用文献)