Text Formatting ⇒ No space after \&
No space after \&
I want to write following in LaTex: "A&B", like written without spaces before and after the &.
How can I do that?
Thank you!
EDIT:
A\&{}B is working, but is this the "right" version?
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
No space after \&
Code: Select all
\documentclass[border=1pt]{standalone}
\begin{document}
A\&B
\end{document}