178

Possible Duplicate:
How to look up a symbol?
Escape character in LaTeX

In the itemize environment, how do I use the ampersand symbol & without LaTeX trying to use it as a command?

5
  • 39
    enter it as \&. Commented Jan 24, 2013 at 23:30
  • 2
    @barbarabeeton I can't believe that I am unable to find a duplicate for it. I even wrote the tag wiki for {ampersand} which contains the "solution" already.
    – mafp
    Commented Jan 24, 2013 at 23:49
  • @barbarabeeton Is there anything other? I cannot get it work with XeLaTeX? Commented Jan 15, 2017 at 19:23
  • 1
    @LéoLéopoldHertz준영 -- you must have a package loaded that changes the meaning (to latex) of \&, but since we don't know that that might be, can't guess at an answer. since you're not the person who asked this question, please post a new one, with a compilable example that demonstrates the problem. Commented Jan 15, 2017 at 19:26
  • \& converts it to a stylish S symbol. Commented May 9 at 12:41

1 Answer 1

173

How about \&?

This also works fine in XeLaTeX and LuaLaTeX. For example, in XeLaTeX this code:

\documentclass{article}
\usepackage{fontspec}
\setmainfont{Linux Libertine O}
\begin{document}
Testing... \&
\end{document}

is thus rendered:

enter image description here

6
  • 1
    This does not work in XeLaTeX. Maybe something there too Commented Jan 15, 2017 at 19:22
  • 1
    @LéoLéopoldHertz준영 It does.
    – NVaughan
    Commented Jan 16, 2017 at 1:37
  • 8
    @NVaughan I cannot get it work in my environment. Is there any more universal way without fontspec? - - This works {\&} instead. But it does not work inside \textbf. Commented Aug 2, 2017 at 13:37
  • Latex has set of symbols as a part of compilation. Such symbols one can use in the tex by \symbol. Commented Jun 9, 2020 at 12:35
  • 1
    It doesn't work. you get an error: "Misplaced alignment tab character &."
    – ingframin
    Commented May 18, 2022 at 14:50

Not the answer you're looking for? Browse other questions tagged .