Latex 代码列表中没有行间距
我对我的乳胶文档使用“listings”和“setspace”包。我必须对我的文档使用 \doublespacing 。问题是代码列表似乎受到 \doublespacing 命令的影响。我希望所有代码清单都没有行距,而其余代码清单则有双倍行距。
我怎样才能做到这一点?
谢谢,
I use 'listings' and 'setspace' package for my latex document. And I have to use the \doublespacing for my document. The trouble is that the code listings seem to be affected by the \doublespacing command. I want all of my code listings have no line spacing while the rest have double line spacing.
How can I achieve that?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以即时更改文档内的间距。看
http://notfaq.wordpress.com/2006/07/ 26/double-spacing-in-latex/
如果您希望自动执行此操作,您可以创建自己的宏/命令/环境
\singlespacing [... 列表 ...] \doublespacing
。You can change the spacing inside the document on the fly. See
http://notfaq.wordpress.com/2006/07/26/double-spacing-in-latex/
If you want this to be automated, you can create your own macro/command/environment that does
\singlespacing [... listing ...] \doublespacing
.