12

I used this \usepackage[normalem]{ulem} in order to put underline in my file and the next thing I notice is that my reference are all messed up. Here is how I used my reference:

\include{Appendix}
\appendix
\renewcommand{\appendixname}{Appendix A}
\renewcommand{\thesection}{A.\arabic{section}}

I found that all the font and the styles of the reference are no longer the same as before. Then I tried to put a \mbox in front of my \cite{}; it still does not solve the problem. Does anyone experience something similar?

jub0bs
  • 58,916
ling
  • 131

1 Answers1

24

Package ulem redefines \em/\emph. Emphasized text is no longer in italics, but the text is underlined. This can be turned off by option normalem:

\usepackage[normalem]{ulem}
Heiko Oberdiek
  • 271,626