引用时某些词要加粗

引用时某些词要加粗

我正在写我的提案,有些单词需要加粗,例如,页数和卷数。我希望所有单词都采用正常格式。

\documentclass[journal]{IEEEtran}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts,mathtools}
\usepackage{algorithmic}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{gensymb}
\usepackage{tikz}
\usepackage{soul} % hightlight package
\usepackage{multirow, multicol, tabularx}
\usepackage{appendix}
\usepackage{graphicx} 
\usepackage{caption} 
\usepackage{subcaption}
\usepackage{dblfloatfix}
\usepackage{newunicodechar}
\usepackage[round,authoryear]{natbib}
\bibliographystyle{plain}

\usepackage[backend=BibLaTeX,sorting=none]{biblatex}
\addbibresource{References.bib}
\usepackage[font={footnotesize}]{caption}
\usepackage[caption=true]{subfigure}

在 References.bib 中:

@inproceedings{akindoyin2015modelling,
  title={Modelling and estimation of carrier frequency and phase uncertainties in large aperture arrays},
  author={Akindoyin, Akinbiyi},
  booktitle={2015 IEEE International Conference on Communications (ICC)},
  pages={4715--4720},
  year={2015},
  organization={IEEE}
}

%4
@phdthesis{willerton2013array,
  title={Array auto-calibration},
  author={Willerton, Marc},
  year={2013},
  school={Citeseer}
}

%5
@article{he2010wideband,
  title={Wideband MIMO systems: Signal design for transmit beampattern     synthesis},
  author={He, Hao and Stoica, Petre and Li, Jian},
  journal={IEEE transactions on Signal Processing},
  volume={59},
  number={2},
  pages={618--628},
  year={2010},
  publisher={IEEE}
}

%6
@inproceedings{patton2008modulus,
  title={Modulus constraints in adaptive radar waveform design},
  author={Patton, Lee K and Rigling, Brian D},
  booktitle={2008 IEEE Radar Conference},
  pages={1--6},
  year={2008},
  organization={IEEE}
}

我使用 bibtex

在此处输入图片描述

答案1

您的代码中存在大量不兼容的包:

  • cite/ natbibvs. biblatex:您必须在经典的 bibtex 书目(在这种情况下,您可以使用前两个包)和更现代、更灵活的 biblatex 基础书目之间进行选择。选择一个,但不要同时使用两者

  • backend=BibLaTeX不存在。要么这样,要么biber这样bibtex(我建议 biber,这会让你更有权力)

  • 所有这些算法包的组合将引发错误。选择您需要的,不要全部加载

  • subcaptionsubfigure不兼容。请选择一个,且只能选择一个。

  • appendix包还会导致有关\appendix已定义的错误。不要忽略错误消息


\documentclass[journal]{IEEEtran}
%\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts,mathtools}
\usepackage{algorithmic}
\usepackage{algorithm}
%\usepackage{algpseudocode}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{gensymb}
\usepackage{tikz}
\usepackage{soul} % hightlight package
\usepackage{multirow, multicol, tabularx}
%\usepackage{appendix}
\usepackage{graphicx} 
\usepackage{caption} 
\usepackage{subcaption}
\usepackage{dblfloatfix}
\usepackage{newunicodechar}
%\usepackage[round,authoryear]{natbib}
%\bibliographystyle{plain}

\usepackage[backend=biber,sorting=none]{biblatex}
\addbibresource{References.bib}
\usepackage[font={footnotesize}]{caption}
%\usepackage[caption=true]{subfigure}



\begin{document}
\nocite{*}

\printbibliography
\end{document}

在此处输入图片描述

相关内容