如何在 Latex 编辑器 (LED) 中调整 \listing 包宽度

发布于 2024-09-18 08:44:26 字数 219 浏览 4 评论 0原文

我正在尝试使用 \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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月竹挽风 2024-09-25 08:44:26

您将在 \lstset 中查找设置 breaklines,如下所示:

\documentclass{article}
\usepackage{listings}
\begin{document}
\lstset{breaklines=true}
\lstinputlisting[language=c++]{File.cpp}
\end{document}

现在 listings 将尝试整齐地打破线条。

有关可以使用 \lstset 设置的详细信息,请参阅有关 LaTeX 维基百科

You'll be looking for the setting breaklines set in \lstset like so:

\documentclass{article}
\usepackage{listings}
\begin{document}
\lstset{breaklines=true}
\lstinputlisting[language=c++]{File.cpp}
\end{document}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文