BibTeX, biblatex and biber ⇒ Help needed: German umlaut "ß"
Help needed: German umlaut "ß"
Hi,
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
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
Last edited by b00029955 on Sun Jul 04, 2010 2:31 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Help needed: German umlaut "ß"
Hmm. Could you provide a sample document that produces the error, making one up if need be. \ss should work for the Eszett. (Umlauts are the accents on ä or ö, etc. The Eszett ß is not an umlaut.)
Do you get the problem even with a very minimal document such as this:
(test.bib)
(test.tex)
For me, the umlaut and the Eszetts (ß) work just fine with these simple samples. Do they work for you?
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: 10345
- 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
LaTeX.org admin
Re: Help needed: German umlaut "ß"
Thanks for the replies.
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}
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 "ß"
And \bibliographystyle used in my document is
\bibliographystyle{acmtrans}
\bibliographystyle{acmtrans}
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Help needed: German umlaut "ß"
Hi,
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
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
LaTeX.org admin
Re: Help needed: German umlaut "ß"
@frabjous : Yes the minimal sample is working fine, so is it due to multiple authors' names? or different bib. style? i am not able to figure out the problem..those special characters are getting rendered fine even with all tex files of the thesis, only problem is with bib file.
Re: Help needed: German umlaut "ß"
@Stefan: thanks for that input. So the problem was not with Bibtex but with my lack of knowledge of German
. Thanks for the help.

Last edited by b00029955 on Fri Jul 02, 2010 1:07 am, edited 1 time in total.
Help needed: German umlaut "ß"
I think the problem may have to do with that bib style in particular, because it puts the names in small caps, and I'm not sure there is a small cap version of the Eszett, at least not in Computer Modern. In that case, I think 'SS' is an acceptable substitute. (Or so it says in Wikipedia, which is never wrong.
)
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.)

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}