I am working on some presentation with beamer. However, I need a specific frame size (not the default values of aspect ratios). What I need is to crop the frame around its content and control the padding size. For example:
\documentclass{beamer}
\beamertemplatenavigationsymbolsempty
\begin{document}
\begin{frame}
\begin{tikzpicture}
\draw (0,0) circle(3cm);
\end{tikzpicture}
\end{frame}
\end{document}
And here is what I got:
What I am looking for is to get:



standalone, as in http://tex.stackexchange.com/a/343005/586? Note that with thetikzclass option, eachtikzpicturewill be a separate page. – Torbjørn T. Dec 19 '16 at 12:09