Open3

Revealjs through Quarto

ShishiousanShishiousan

カスタム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;
}

と書くと調整できる.

ShishiousanShishiousan

スライドサイズを越えるサイズの図を表示するときに便利

![]({{< placeholder 1500 300 >}}){.absolute left=-75 style="max-width: none !important;"}

scrollable=trueでは上手くいかないので注意

ShishiousanShishiousan

任意の隙間(gap)を差し込む.

::: {style="margin-top: 100px;"}
:::