在Lyx文档中插入python / C ++代码的最佳方法是什么?该代码是少于20行的小示例。
我的Lyx文档正在使用Book文档类。
奥詹普
Answers:
我更喜欢将清单作为子文档插入,因此代码直接从文件中获取,您可以对其进行进一步的编辑并保持更新(避免重复信息,并且维护更加容易)。要在Lyx中执行此操作:
Insert-> File-> Child文档
然后在出现的窗口中,将类型更改为程序列表并根据需要进行配置,例如,您可能想输入参数language = Python(您可以键入一个?来查看所有参数)。
我通常使用的一组参数是:
breaklines=true //--> breaks lines to margin
captionpos=b //--> caption at the bottom of the listing (default is "t")
frame=tb //--> frame at the top and at the bottom of the listing
language=Python //--> syntax highlighting for python