创建独立图形时,使用minimal
文档类比文档类有什么优势?article
附加问题:
在我有时间自己进行测试之前,这里有人知道是否minimal
会比编译得更快吗article
?
答案1
该类
minimal
已经有empty
页面样式,因此不打印页码。独立图形不需要页码。minimal
未定义宏。其中的内容较少,article
可能会造成干扰。
但是,通常我只会用minimal
它来测试或展示一个最小的工作示例。虽然只显示一个图形可能就足够了。
对于创建图形,您可能会错过其他基类提供的功能。仅举几个例子,如果您使用文本创建图形,这些例子很重要:
您不能使用常见的字体大小命令,例如
\small
和\large
,它们未定义。minimal
使用 10pt 字体。已过时的 LaTeX 2.09 命令(例如
\bf
和)\it
在 中仍然受支持article
,但在 中不受支持minimal
。
答案2
这就是minimal
定义:
\renewcommand\normalsize{\fontsize{10pt}{12pt}\selectfont}
\setlength{\textwidth}{6.5in}
\setlength{\textheight}{8in}
\pagenumbering{arabic} % but no page numbers are printed because:
\pagestyle{empty} % this is actually already in the kernel
答案3
使用比使用创建具有紧密纸张尺寸的图形minimal
更简单。article
\documentclass{minimal}%\documentclass{article}
%\pagestyle{empty}
%\headheight=0pt
%\headsep=0pt
\usepackage{pstricks}
\paperwidth=72.27pt
\paperheight=72.27pt
\topmargin=-72.27pt
\oddsidemargin=-72.27pt
\parindent=0sp
\special{papersize=\the\paperwidth,\the\paperheight}
\begin{document}
\begin{pspicture}(\paperwidth,\paperheight)
\psframe[linecolor=red](\paperwidth,\paperheight)
\end{pspicture}
\end{document}