1

in my Bibtex file i name the Author: author={R{\"o}{\ss}ler, Irene and Ungerer, Albrecht}, but in the literature list it strangely outputs this:

[Rößler und Ungerer 2012] RÖSSLER, Irene; UNGERER, Albrecht:...

where the second RÖSSLER should also be RÖßLER

Update2: 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}

MeineBib:

@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}
}
cgnieder
  • 66,645
Sid
  • 13

1 Answers1

2

The error is in your entry. You are typing: R{\"o}{\ss}~ler. However the token ~ forces a space. So simple write: R{\"o}{\ss}ler.

Here the correct entry:

@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}
}

The following options only work with a KOMA class. In your case it ought be scrartcl.

 numbers=noendperiod,headings=normal,%
 appendixprefix=true,bibliography=totoc,
 listof=totoc

Here a correct 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}

enter image description here

Marco Daniel
  • 95,681
  • Thank you, but the second entry "RÖSSLER" is still with SS instead of ß im new to this and im trying my best. sorry for any inconveniences caused by my poor forum skills :) – Sid May 13 '13 at 19:05
  • Anyway i found out that SS in the "small capitals" font is the correct translation for ß. I didnt know that :D. Thank you Marco for your answer. – Sid May 13 '13 at 19:09
  • 2
    @Sid officially there is no uppercase “ß” and also no small caps “ß” and “SS” is orthographically correct there. (Some fonts do have uppercase and sc versions of “ß”, though...) – cgnieder May 13 '13 at 19:19
  • 2
    @Sid If you want an uppercase ß (ẞ – ), you can use XeLaTeX and the packages fontspec and libertine: http://i.stack.imgur.com/XMGvh.png – doncherry May 13 '13 at 19:29
  • @doncherry Go, libertine! :) (The ẞ could be kerned a little bit closer to the ö, though... or the small caps could be spaced out more... or both...) – cgnieder May 13 '13 at 20:16