DocBook:指定代码或标记
您可以使用
以及其他几个来指定方程,但是必须使用什么标签来指定代码?更具体地说,是 PHP、HTML、CSS 和 Javascript?是否有一个插件可以与 OxygenXML 一起使用来自动添加这些功能?我需要输出为 PDF。
You can specify equations using <equation>
and also several others, but what tag must be used to specify code? More specifically, PHP, HTML, CSS and Javascript? Is there a plugin that you can use with OxygenXML to add these features automatically? I need to output as PDF.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在开发一个使用 docbook 的项目,并且有 PHP 示例。
PHP 中的示例使用
programlisting
标签,像这样:注意语言属性。
稍后在生成输出时(至少对于 HTML 输出),另一个工具会使用它来添加语法着色
对于不特定于一种编程语言的示例,例如配置文件,我们使用
屏幕
标签;例如,对于 Apache 相关配置文件的一部分,示例如下:引用他们的文档:
和 :
所以说,这两个人看起来还是挺合适的。
I'm working on a project which uses docbook, and has examples in PHP.
The examples in PHP are using
programlisting
tag, like this :Note the language attribute.
It is used later by another tool to add syntax-coloration, when generating the ouput (for HTML output, at least)
For examples that are not specific to one programming language, like configuration files, we are using the
screen
tag ; for instance, for a part of an Apache-related config file, an example would be :Quoting their documentations :
And :
So, these two seem quite appropriate.