& 符号未打印在参考书目或引文中

& 符号未打印在参考书目或引文中

我的 bibtex 代码是:

@TechReport{MarlinJones2020,
  author      = {{Marlin P. Jones \& Assco. Inc.}},
  institution = {{Marlin P. Jones \& Assco. Inc.}},
  title       = {{HC-SR501 PIR MOTION DETECTOR}},
  year        = {2020},
  url         = {https://www.mpja.com/download/31227sc.pdf},
}

由于某种原因,“&”符号没有打印出来,我收到了

Misplaced tab alignment character &.... 

错误

答案1

下次,提供所谓的平均能量损失就像我在这里展示的那样。这样更容易提供帮助。

\documentclass{article}
\usepackage{biblatex}

% Generate a bib file "on the fly" for testing.
\begin{filecontents*}{myTestDatabase.bib}
@article{myRefKey01,
  author        = {Hans Wurst and Mueller, Andreas},
  title         = {Title {\&} Title},
  publisher     = {Jumper},
  year          = 2020,
  journaltitle  = {Journal Name},
}
\end{filecontents*}

\bibliography{myTestDatabase}

\begin{document}

% Show all references without explicitely calling them
\nocite{*}
\printbibliography

\end{document}

在此处输入图片描述

确保在你修改某些内容后,在编译之前删除所有自动生成的文件(例如 .aux)。它们可能包含上次运行的“坏”字符,即使你修正了实际代码。请参阅截屏,即可删除所有选定的文件。

在此处输入图片描述

[ biblatex MWE minimal working example]

相关内容