有沒有一種簡(jiǎn)單的方法可以讓標(biāo)題在Quarto中居中?我使用revealjs格式。我想在本地做這件事。
我試過fig-cap-location = & quot;中心& quot但是它不起作用。
可重復(fù)的示例:
---
title: "Untitled"
format: revealjs
---
## Centering the caption
![I want this to be centered](https://www.r-project.org/logo/Rlogo.png){fit-align="center"}
我認(rèn)為最簡(jiǎn)單的方法是使用css,例如
.caption{
text-align: center;
}