Latex中的bibtex使用和相关技巧

BiBTex的设置方法:

1.创建一个文本文件,更改后缀名为.bib,用于放置参考文献。如创建Ref.bib

2.在谷歌学术或百度学术等网址中搜索文献名字,然后引用选择bibTex格式,打开链接复制文本如下,并将文本粘贴至Ref.bib

@article{Mercuri2018A,
  title={A Direct Phase-Tracking Doppler Radar Using Wavelet Independent Component Analysis for Non-Contact Respiratory and Heart Rate Monitoring.},
  author={Mercuri, M. and Liu, Y. H. and Lorato, I. and Torfs, T. and Wieringa, F. and Bourdoux, A. and Van, C Hoof},
  journal={IEEE Transactions on Biomedical Circuits & Systems},
  volume={PP},
  number={99},
  pages={1-12},
  year={2018},
}

3.在.tex文件中添加bib引用:

\bibliographystyle{IEEEtran}   #规定参考文献的样式
\bibliography{IEEEabrv,Ref}  #参考文献库的名字Ref

4.在文章需要引用的地方添加文献引用

\cite{Mercuri2018A}   #注意{}内填入对应文献中的首个字符串,如上对应Mercuri2018A

5.保存bib文件,编译Tex文件即可

问题1:遇到不同文章有相同作者的情况,后一个文章的作者会变成——

解决办法:

1.更改bib默认配置,在bib文件中加入如下配置

@IEEEtranBSTCTL{IEEEexample:BSTcontrol,
CTLdash_repeated_names = "no"
}

2.在Tex文件的文档开头加入如下语句,再次编译即可

\begin{document}     #文档开头
\bstctlcite{IEEEexample:BSTcontrol}  

参考:https://tex.stackexchange.com/questions/29381/is-it-normal-for-bibtex-to-replace-similar-author-names-with

你可能感兴趣的:(Latex)