[Tex/LaTex] Strange ampersand shape in italics

fontssymbolstypography

I'm trying to use the & symbol in the bib file. The following is my code:

booktitle = {Design, Automation {\&} Test in Europe Conference {\&} Exhibition},

The output is :

enter image description here

Is this common? Or do I do something wrong?

Best Answer

As has been suggested in the comments: what you're getting as the output of an \& with your current font (Computer Modern) is simply one of many renditions of the symbol called an ampersand. Traditionally, type designers have always taken a lot more liberties with that glyph than with, say, a plain a. That's been a custom for several centuries, which is why today we have thousands of ampersand versions in various degrees of fanciness. Enough to even justify writing entire books dedicated to that one glyph, as, e.g., typographer Jan Tschichold has done.

enter image description here

Needless to say, your ›problem‹ is not restricted (or related) to bibliographies...

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}

\begin{document}
\raggedright
Design, Automation \& Test in Europe Conference \& Exhibition\\
\emph{Design, Automation \& Test in Europe Conference \& Exhibition}

\fontfamily{qcs}\selectfont
Design, Automation \& Test in Europe Conference \& Exhibition\\
\emph{Design, Automation \& Test in Europe Conference \& Exhibition}

\fontfamily{qpl}\selectfont
Design, Automation \& Test in Europe Conference \& Exhibition\\
\emph{Design, Automation \& Test in Europe Conference \& Exhibition}

\fontfamily{qzc}\selectfont
Design, Automation \& Test in Europe Conference \& Exhibition\\
\end{document}

enter image description here

Related Question