如何设置 LaTeX 字体大小(以毫米为单位)?
我需要在 LaTeX 文档中设置字体大小(以毫米为单位)。 我怎样才能做到这一点?
谢谢你!
I need to set the font size in millimeters in my LaTeX document. how can I do that?
thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用 Type 1 字体(即无限可缩放字体)? 如果没有,您需要执行类似
\usepackage{lmodern}
的操作(选择我喜欢的字体,即 Computer Modern 的 Latin Modern 版本)。 然后只需输入类似命令,以下文本将以 8 毫米高、9 毫米基线的字体显示。 如果您需要以这种方式设置少量文本的大小,您可能必须进入文档类定义——祝您好运; 我尽可能远离那些人。
Are you using Type 1 fonts (that is, infinitely scalable fonts)? If not, you'll need to do something like
\usepackage{lmodern}
(that selects my preferred fonts, the Latin Modern version of Computer Modern). Then just enter a command likeand the following text will be in a font 8 mm high on a 9 mm baseline. If you need to set the size of more than a small amount of text in this way, you will probably have to go into the document class definition -- good luck; I stay as far away from those as I possibly can.