如何在 Latex 编辑器 (LED) 中调整 \listing 包宽度
我正在尝试使用 \listing 包将一些 .cpp 文件包含到我的文章中。
我补充一下:
\usepackage{listings}
然后我用 \lstinputlisting[language=c++]{File.cpp}
问题是宽度没有调整,所以代码被砍了。
哪个是解决方案?
I am trying to use the \listing package to include some .cpp files into my article.
I add:
\usepackage{listings}
And then I use \lstinputlisting[language=c++]{File.cpp}
The problem is that the width is not adjusted, so the code is cutted.
Which is the solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将在
\lstset
中查找设置breaklines
,如下所示:现在
listings
将尝试整齐地打破线条。有关可以使用
\lstset
设置的详细信息,请参阅有关 LaTeX 维基百科。You'll be looking for the setting
breaklines
set in\lstset
like so:Now
listings
will try and break the lines neatly.For more information about what can be set with
\lstset
, see the article on LaTeX Wikibook.