如何解决 BibTex 显示问题

如何解决 BibTex 显示问题

我的参考文献有问题,我尝试了很多bibliographystyle,但没有好的解决办法,下面的图片显示了我的问题。

在此处输入图片描述 tex 文件:

%
% ****** maiksamp.tex 29.11.2001 ******
%
\documentclass[
aps,%
12pt,%
final,%
notitlepage,%
oneside,%
onecolumn,%
nobibnotes,%
nofootinbib,% 
superscriptaddress,%
noshowpacs,%
centertags]%
{revtex4}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{algorithm}
\usepackage[noend]{algpseudocode}
\usepackage{array}
\usepackage{multirow}
\usepackage{booktabs}
\usepackage{makecell}
\usepackage[hyperpageref]{backref}
\usepackage[alf]{abntex2cite}
\usepackage{amssymb}

\usepackage{adjustbox}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
%\usepackage{natbib}
\usepackage{hyperref}


\graphicspath{ {figures/} }


\begin{document}




\nocite{*}
\bibliography{bibfile}
\bibliographystyle{plain}
\end{document}

围兜文件:

    @inproceedings{yuan2010security,
      title={Security monitoring around a video surveillance car with a pair of two-camera omni-directional imaging devices},
      author={Yuan, Pei-Hsuan and Yang, Kuo-Feng and Tsai, Wen-Hsiang},
      booktitle={Computer Symposium (ICS), 2010 International},
      pages={325--330},
      year={2010},
      organization={IEEE}
    }
    @inproceedings{banu2017intelligent,
      title={Intelligent video surveillance system},
      author={Banu, Virgil Claudiu and Costea, Ilona M{\u{a}}d{\u{a}}lina and Nemtanu, Florin Codrut and B{\u{a}}descu, Iulian},
      booktitle={Design and Technology in Electronic Packaging (SIITME), 2017 IEEE 23rd International Symposium for},
      pages={208--212},
      year={2017},
      organization={IEEE}
    }

答案1

文档revtex4类会自动加载natbib引文管理包(使用选项sort&compress)。加载其他引文管理包(例如)不会有任何好处abntex2cite。简而言之:如果您必须使用revtex4文档类,请不要加载此包。

以下示例采用plain书目样式来格式化手头的两个书目条目。您可以自由使用或不使用任何其他可产生数字样式引文标注的书目样式。

在此处输入图片描述

\RequirePackage{filecontents}
\begin{filecontents}{bibfile.bib}
@inproceedings{yuan2010security,
  title        = "Security monitoring around a video surveillance car
                  with a pair of two-camera omni-directional
                  imaging devices",
  author       = "Yuan, Pei-Hsuan and Yang, Kuo-Feng and Tsai,
                  Wen-Hsiang",
  booktitle    = "Computer Symposium (ICS), 2010 International",
  pages        = "325--330",
  year         = 2010,
  organization = "IEEE",
}
@inproceedings{banu2017intelligent,
  title        = "Intelligent video surveillance system",
  author       = "Banu, Virgil Claudiu and Costea, Ilona
                  M{\u a}d{\u a}lina and Nemtanu, Florin Codrut
                  and B{\u a}descu, Iulian",
  booktitle    = "Design and Technology in Electronic Packaging
                  (SIITME), 2017 IEEE 23rd International Symposium
                  for",
  pages        = "208--212",
  year         = 2017,
  organization = "IEEE",
}
\end{filecontents}

\documentclass[aps,12pt,final,notitlepage,%
       oneside,onecolumn,nobibnotes,nofootinbib,%
       superscriptaddress,noshowpacs,centertags,%
      ]{revtex4}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}

\usepackage{graphicx,adjustbox}
\graphicspath{ {figures/} }

\usepackage{amsmath,amssymb}
\usepackage{algorithm}
\usepackage[noend]{algpseudocode}
\usepackage{array,multirow,booktabs,makecell}

%\usepackage[alf]{abntex2cite}  %% <-- this is the source of the problems
%\usepackage{natbib} %% is loaded automatically by revtex4 document class
\bibliographystyle{plain} %% or any other suitable bibliography style

%% Load the next two packages **last**:
\usepackage{hyperref}
\usepackage[hyperpageref]{backref}

\begin{document}
\nocite{*}
\bibliography{bibfile}
\end{document}

相关内容