8

使用 restructuredText for pdf (rst2pdf) 使段落在页面中心对齐的最佳方法是什么?

4

2 回答 2

5

您可以使用以下内容:

.. class:: center

This paragraph will be centered.
于 2013-02-12T02:29:17.517 回答
5

如果您想在 rst2html.py (Docutils 0.12) 上使用中心标签(如上所述),您应该通过添加以下行来创建一个 css 文件,即 mystyle.css:

.center {text-align: center;}

要将您的 rst 文件,即 myrst.rst 转换为 html 文件,请使用以下命令

rst2html myrst.rst myrst.html --stylesheet=mystyle.css,html4css1.css

通过使用这种方法,下面的代码运行良好。

.. class:: center

This paragraph will be centered.
于 2015-10-14T17:42:02.627 回答