LaTeX:设置自定义行距(某些文档部分除外)
我的文档中需要有 1.5 行距,但没有某些部分,如目录、标题页等。
当我使用此命令将行距设置为 1.5 时:
\renewcommand{\baselinestretch}{1.50}\normalsize
文档行距设置为 1.5。
如何从该设置中排除文档的某些部分?
感谢您的帮助!
I need to have a 1.5 line spacing within my document but without some parts like the TOC, title page etc.
When I use this command to set the line spacing to 1.5:
\renewcommand{\baselinestretch}{1.50}\normalsize
the documents line spacing is set to 1.5.
How can I exclude some parts of the document from that setting?
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不必将该行放在序言中。 您可以将其放在文档正文中,就在需要不同间距的文本之前,并且
\renewcommand
行之前的所有文本将不受影响:You don't have to put that line in the preamble. You can put it in the document body, just before the text that you need spaced differently, and all the text prior to the
\renewcommand
line will remain unaffected:使用setspace 包。 使用命令
\singlespacing
、\onehalfspacing
和\doublespacing
更改文档中的行距。Use the setspace package. Use the commands
\singlespacing
,\onehalfspacing
and\doublespacing
to change the line spacing in the document.