如何更改样式表中的页眉/页脚文字颜色?
我尝试了,毫无结果:
footer: {
parent: normal,
alignment: TA_CENTER,
textColor: red
},
答案 0 :(得分:2)
页眉或页脚的样式并不是真的那样,因为它们是任意重组文本。
因此,如果您想更改颜色,最简单的方法可能是使用类或角色。
所以,你可以这样做:
.. footer::
class:: foo
This is the footer, with style foo
或者
.. footer::
:foo:`This is the footer with style foo`
如果您执行后者,则必须添加
.. role:: foo
的某个地方。