我试图将整个文档所基于的基本字体大小设为 36pt。TikzPoster 仅表示它们在文档类的参数中支持最大 25pt 的大小。我该如何将此基本字体大小从 25pt 更改为 36pt,以便其余的海报尺寸自动缩放?
像这样:
\documentclass[36pt, portrait]{tikzposter}
答案1
我们可以使用KOMA-script来帮助我们。
正如解释的那样如何使用 KOMA 脚本更改字体大小?我们制作了一个新文件。
\documentclass{article}
\usepackage{scrfontsizes}
\generatefontfile{theguy}{36pt}
\begin{document}
\end{document}
运行上述示例将得到一个文件theguy36pt.clo
。该文件可以输入到我们的文档中,但由于它包含内部宏,我们需要使用\makeatletter
和来保护它\makeatother
。
\documentclass{tikzposter}
\usepackage{lmodern}
\makeatletter
\input{theguy36pt.clo}
\makeatother
\usepackage{blindtext}
\begin{document}
\block{Walzing Wombat}{\blindtext}
\end{document}
文件中有很多内容,海报不需要这些内容。当然,你应该看一下这个文件并稍微调整一下。floatsep
海报中没有真正的用处,但文本和公式之间的差距仍然很重要。