答案1
Beamer 并不能自动调整纸张尺寸,但有两种可能性:
手动调整纸张尺寸
\documentclass{beamer} \geometry{papersize={8cm,8cm}} \mode<presentation>{ } \beamertemplatenavigationsymbolsempty \usepackage{tikz} \begin{document} \begin{frame} \centering \begin{tikzpicture} \draw (0,0) circle(3cm); \end{tikzpicture} \end{frame} \end{document}
使用另一个可以根据内容自动调整大小的类,例如
standalone
。\documentclass[tikz, margin=1cm]{standalone} \begin{document} \begin{tikzpicture} \draw (0,0) circle(3cm); \end{tikzpicture} \end{document}