将段落与 RestructedText 居中对齐?

问题描述 投票:0回答:2

有没有办法使用 pdf 的重构文本(rst2pdf)让段落在页面中心对齐?

alignment restructuredtext rst2pdf
2个回答
6
投票

您可以使用以下内容:

.. class:: center

This paragraph will be centered.

6
投票

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

.center {text-align: center;}

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

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

通过使用这种方法,下面的代码可以很好地工作。

.. class:: center

This paragraph will be centered.
© www.soinside.com 2019 - 2024. All rights reserved.