来自德国

来自德国

我是 LaTeX 新手并且遇到了一个问题。

这是我的 tex 文件:

\documentclass[a4paper, 10pt]{article}

\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}

\usepackage[left=3.5cm, right=3.5cm, top=3.5cm, bottom=3.5cm]{geometry}

\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}

\usepackage[babel,german=quotes]{csquotes}
\usepackage[style=numeric, backend=biber]{biblatex}

%\usepackage{hyperref}
\usepackage{csquotes}

\bibliography{ref/literatur}

\begin{document}    
    
    Test \autocite{MSPP}
    
    \printbibliography
    
\end{document}

这是我的 bib 文件:

@Book{MSPP,
  title     = {Multilayered Security and Privacy Protection in Car-to-X Networks},
  publisher = {Springer Science $\mathplus$ Business Media},
  year      = {2013},
  author    = {Hagen Stübing},
  doi       = {10.1007/978-3-658-02531-1},
  url       = {http://dx.doi.org/10.1007/978-3-658-02531-1},
}

我收到此错误信息:

! Undefined control sequence. <recently read> \mathplus

但我从来没用过 mathplus.. ?! 当我 % \printbibliography 时,没有任何错误,但也没有参考文献列表 :-D

有什么想法该怎么办吗?!

提前致谢

来自德国

答案1

您有publisher = {Springer Science $\mathplus$ Business Media},$\mathplus$用替换+就足够了。

相关内容