我想定义standalone
文档中的字体大小,使其与我的“真实”大文档中的字体大小相同。
我有几个standalone
文档。在这些文档中,我想实现一个选项,使独立文档仅遵循所写内容font-config.tex
(参见 MWE)——目前为空。
(在我的主文档中,我当然将大小定义为文档类(scrreprt)的一个选项,但我有点不知道在这里该做什么,因为独立显然不起作用\KOMAoptions
。)
我应该写入什么font-config.tex
以便它基本上模仿我为真实文档定义的内容?
平均能量损失
\documentclass[
12pt
]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\input{font-config}
%\KOMAoptions{fontsize=11pt}
\usepackage{
tikz,
}
\begin{document}
\begin{tikzpicture}[font=\small]
\draw
(0,0) coordinate (A)
(1,1) coordinate (B)
;
\draw[thick] (A) rectangle (B) node[anchor=south west, align=left] {Words abc.\\Test.};
\end{tikzpicture}
\end{document}
答案1
standalone
用作article
其“基”类,但您可以使用class=<classname>
选项更改这一点。因此,您可以告诉standalone
使用 KOMA 类
\documentclass[class=scrreprt]{standalone}
然后,您可以\KOMAoptions
在文件中直接使用它standalone
,将其放在font-config
文件中,或者将fontsize
声明直接添加到类选项中。
答案2
您也可以只设置字体大小:
\fontsize{10}{12}\selectfont
第一个参数是字体大小,第二个参数是基线跳跃。