在我的 Bibtex 文件中,我将作者命名为:
author={R{\"o}{\ss}ler, Irene and Ungerer, Albrecht}
,但在文献列表中,它奇怪地输出以下内容:
[Rößler und Ungerer 2012] RÖSSLER,Irene;阿尔布雷希特·安格尔:……
第二个 RÖSSLER 也应为 RÖßLER
更新2:MWE
\documentclass[a4paper,12pt,fleqn,oneside,numbers=noendperiod,headings=normal,appendixprefix=true,bibliography=totoc,listof=totoc]{article}
\usepackage{natbib}
\usepackage[ngerman]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
Standardnormalverteiung ben\"otigt (\citep[S. 123]{mathe}).
\bibliographystyle{dinat}
\bibliography{MeineBib}
\end{document}
我的围脖:
@incollection{mathe,
year={2012},
booktitle={Statistik für Wirtschaftswissenschaftler},
series={BA KOMPAKT},
title={Wahrscheinlichkeitsrechnung},
publisher={Springer Berlin Heidelberg},
author={R{\"o}{\ss}ler, Irene and Ungerer, Albrecht},
pages={83-136},
language={German}
}
答案1
错误在于您的输入。您正在输入:R{\"o}{\ss}~ler
。但是令牌~
强制输入空格。因此只需写:R{\"o}{\ss}ler
。
这是正确的条目:
@incollection{mathe,
year={2012},
isbn={978-3-642-32256-3},
booktitle={Statistik für Wirtschaftswissenschaftler},
series={BA KOMPAKT},
doi={10.1007/978-3-642-32257-0_4},
title={Wahrscheinlichkeitsrechnung},
url={http://dx.doi.org/10.1007/978-3-642-32257-0_4},
publisher={Springer Berlin Heidelberg},
author={R{\"o}{\ss}ler, Irene and Ungerer, Albrecht},
pages={83-136},
language={German}
}
以下选项仅适用于 KOMA 类。 在你的情况下应该是scrartcl
。
numbers=noendperiod,headings=normal,%
appendixprefix=true,bibliography=totoc,
listof=totoc
这是一个正确的 mwe
\documentclass[a4paper,12pt,fleqn,oneside,%
numbers=noendperiod,headings=normal,%
appendixprefix=true,bibliography=totoc,
listof=totoc]%
{scrartcl}
\usepackage{natbib}
\usepackage[ngerman]{babel}
\usepackage[latin1]{inputenc} %Spezialzeichen in Tex-Code
\usepackage[T1]{fontenc}
\usepackage{hyperref}
\usepackage{filecontents}
\begin{filecontents}{MeineBib.bib}
@incollection{mathe,
year={2012},
isbn={978-3-642-32256-3},
booktitle={Statistik für Wirtschaftswissenschaftler},
series={BA KOMPAKT},
doi={10.1007/978-3-642-32257-0_4},
title={Wahrscheinlichkeitsrechnung},
url={http://dx.doi.org/10.1007/978-3-642-32257-0_4},
publisher={Springer Berlin Heidelberg},
author={R{\"o}{\ss}ler, Irene and Ungerer, Albrecht},
pages={83-136},
language={German}
}
\end{filecontents}
\begin{document}
Standardnormalverteiung ben\"otigt (\citep[S. 123]{mathe}).
\bibliographystyle{dinat}
\bibliography{MeineBib}
\end{document}