1

enter image description here

Why are the top and bottom of the O cut off when I use the standalone class without any larger symbols?

\documentclass{standalone}%
\begin{document}%
O%
\end{document}%
Tim N
  • 10,219
  • 13
  • 63
  • 88

2 Answers2

4

You can use the option [border=<size>] to change the margin.

\documentclass[border=2pt]{standalone}

\begin{document}
O
\end{document}

enter image description here

Herr K.
  • 17,946
  • 4
  • 61
  • 118
1

Aren't. Without 12pt and \Huge is also OK, but less visible.

\documentclass[12pt]{standalone}% \begin{document}% \Huge

O% \end{document}%

enter image description here

(Sorry that not as a comment, but i don't know, how to add a picture there).