BibTeX, biblatex and biber ⇒ Help needed: German umlaut "ß"
Help needed: German umlaut "ß"
My knowledge with LaTex and BibTex is at intermediate level, I have been working for days but still not able to get "ß" rendered properly in the Bibliography (BibTex) I tried {\ss} but it's rendering it as "ss" instead of "ß", required packages are included in tex file there are no build errors but still not getting right output. System: Windows
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Help needed: German umlaut "ß"
Do you get the problem even with a very minimal document such as this:
(test.bib)
Code: Select all
@Article { testref,
author = {Kurt G{\"o}del},
title = {Der Stra{\ss}e},
journal = {Au{\ss}ersein},
volume = {1},
year = {2010},
pages = {1--2}
}
Code: Select all
\documentclass{article}
\begin{document}
I shall refer to \cite{testref}.
\bibliographystyle{plain}
\bibliography{test}
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Help needed: German umlaut "ß"
Sure? I would use the inputenc package.b00029955 wrote:required packages are included in tex file
Stefan
Re: Help needed: German umlaut "ß"
My apologies, I don't have any knowledge about German.
Bibtex Author entry
author = {Gain, James and Marais, Patrick and Stra{\ss}er , Wolfgang},
Output: GAIN, J., MARAIS, P., AND STRASSER
tex packages:
\usepackage[german]{babel}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
Re: Help needed: German umlaut "ß"
\bibliographystyle{acmtrans}
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Help needed: German umlaut "ß"
fine, you're already using the necessary packages. I just recommend to replace german by ngerman, this suits our current writing after the last reform.
Since you're loading inputenc, you could just write ß directly in the text.
I noticed that you're using capital letters for the names - there's not capital ß. Germans write SS for a capital ß. So, perhaps there's no problem.
Stefan
Re: Help needed: German umlaut "ß"
Re: Help needed: German umlaut "ß"

Help needed: German umlaut "ß"

I get 'SS' in smallcaps, even if I write "ß" directly in the bib file.
If it's really important to you, try:
author = {Gain, James and Marais, Patrick and Stra{\upshape{\ss}}er , Wolfgang}
P.S. I see this has already been covered, but I have actually seen small caps Eszetts in other fonts. There are some examples here.)
Help needed: German umlaut "ß"
Brilliant ! It worked! Thanks a lotfrabjous wrote: author = {Gain, James and Marais, Patrick and Stra{\upshape{\ss}}er , Wolfgang}