General ⇒ (Fixed)Problem: Special character inside an acronym.
(Fixed)Problem: Special character inside an acronym.
I tried to post this earlier but nobody replied to the post, so here's my second attempt.
I'm having a problem with the acronym package.
I want to create an acronym of the term "Command & Control"
but the character "&" is giving me an error when im building the document.
I have tried:
\ac{C&C}
\ac{C\&C}
and
\acro{C&C}{Command & Control}
\acro{C\&C}{Command \& Control}
but this is not working.
Can somebody please assist me? I'm new to Latex.
Jørgen
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
(Fixed)Problem: Special character inside an acronym.
the character & is invalid in acronym names. Try:
Code: Select all
\acro{C+C}[C\&C]{Command \& Control}
\ac{C+C}
Re: Problem: Special character inside an acronym.
U made my day!
