Open3
Revealjs through Quarto

カスタムcssで調整する場合,view source pageを参照すると,どのクラスとかを設定したらいいか分かる.
例えば,Table of Contentsの行間を調整したい場合,
</section><section id="TOC">
<nav role="doc-toc">
<h2 id="toc-title">Table of Contents</h2>
<ul>
とソースにあることからcssファイルに
#TOC {
line-height: 2em;
}
と書くと調整できる.

スライドサイズを越えるサイズの図を表示するときに便利
{.absolute left=-75 style="max-width: none !important;"}
scrollable=true
では上手くいかないので注意

任意の隙間(gap)を差し込む.
::: {style="margin-top: 100px;"}
:::