我将 documentclass 设置为 10pt,然后使用 导入 TikZ 图形\input
。一切运行正常,但现在我想在文档中使用 11pt,并且所有节点都更大,因为字体现在更大,所有内容都扭曲了。
那么,我怎样才能将 TikZ 中的字体类(或任何名称)设置为 10pt,以便图中的正常字体为 10pt,因为我在设计时已经考虑到了所有内容,而不是实际文档中的 11pt?
答案1
如果您不想更改图片中的字体大小,这很简单,您可以尝试以下操作:
\documentclass[11pt]{article}
\usepackage{tikz}
\tikzset{
font={\fontsize{10pt}{12}\selectfont}}
\begin{document}
This is some text.
\begin{tikzpicture}
\node {This is a node.};
\end{tikzpicture}
This is some text.
\end{document}
\small
显然,如果在图片中使用诸如等命令,事情会变得更加复杂。