when I try to write 90% I do 90 $%$ , but none works and anything after the % doesn't print in the output, any solution ?
Asked
Active
Viewed 65 times
1 Answers
3
The easy way is to use \%, the preferred way \SI{5}{\percent}, for example. The siunitx package approach has a 'better' spacing.
\documentclass{article}
\usepackage{siunitx}
\begin{document}
One way: 5\%
or \SI{5}{\percent}
\end{document}

-
thank you very much , I couldn't find the similar questions by my keywords – Farzad64 Mar 28 '15 at 18:14
-
@Farzad64: Well, admittedly, looking for
%asEscape characteris not very straightforward, right – Mar 28 '15 at 18:29
\%is how it is done. – Steven B. Segletes Mar 28 '15 at 17:33