打印 C++ 中的所有代码列表项目

发布于 2025-01-02 09:39:26 字数 152 浏览 0 评论 0原文

我需要打印一个由一堆 .h 和 .cpp 文件组成的项目的源代码(我需要将其交给我的老师)。是否有一个 IDE 或程序可以让您一次打印(或导出为 PDF 或 Latex)所有文件,并可能保持语法突出显示?我尝试使用 XCode 和 Visual Studio,但它们只允许一次打印一个文件。

I need to print the source code of a project that consists of a bunch of .h and .cpp files (I need to hand it in to my teacher). Is there an IDE or a program that lets you print (or export to PDF or Latex) all the files at once, possibly keeping the syntax highlighting? I tried with XCode and Visual Studio but they just allow to print one file at a time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

不可一世的女人 2025-01-09 09:39:26

GNU 工具,例如 a2psenscript 可以将源代码转换为 postscript 文件,然后您可以打印或转换为 pdf。它们支持各种语言的语法突出显示,并且可以将多个文件捆绑到同一个文档中。

GNU tools like a2ps or enscript can convert source code into postscript files that you can then print or convert to pdf. They support syntax highlighting for various languages, and they can bundle up multiple files into the same document.

审判长 2025-01-09 09:39:26

使用 linux 盒子,您可以尝试:

grep '#include <' *.{hpp,h,cpp,c} | uniq > output.cpp
grep -v '#include' *.{hpp,h} >> output.cpp # This line may cause problem if .h relies on each other and you maybe will have to list files manually
grep -v '#include' *.{cpp,c} >> output.cpp

然后在支持导出突出显示代码(vim、gedit...)的编辑器中打开 output.cpp 或将其粘贴到像 Pastebin 这样的门户上:P

With the linux box you may try:

grep '#include <' *.{hpp,h,cpp,c} | uniq > output.cpp
grep -v '#include' *.{hpp,h} >> output.cpp # This line may cause problem if .h relies on each other and you maybe will have to list files manually
grep -v '#include' *.{cpp,c} >> output.cpp

And than open output.cpp in editor which supports exporting of hilighted code (vim, gedit...) or paste it on portal like pastebin :P

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