使用restructuredText for pdf(rst2pdf)在页面中心对齐段落的最佳方法是什么?
答案 0 :(得分:6)
您可以使用以下内容:
.. class:: center
This paragraph will be centered.
答案 1 :(得分:3)
如果你想在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.