在 Quarto 文档中引用图形并编入 HTML 时,默认情况下会在单词Figure和图形标题之间放置一个冒号。我希望那个冒号是一个句号。
我尝试使用以下内容的style.css文件,但是它不起作用:
.figcaption::before {
content: "Figure " counter(fig): ". ";
}
这是我的四开文档:
---
title: "Periods are better than colons"
author: "Eric"
format:
html:
css: style.css
---
I'd like to replace the colon with a period in the caption for @fig-MyRLogo.
![RLogo](Rlogo.jpg){fig-align="left" #fig-MyRLogo}
我得到的输出是:
这是通过带有参数的交叉引用选项
title-delim
来控制的。您的 YAML 标头应如下所示: