gpt4 book ai didi

r - Bookdown 演示文稿中类似 Beamer 的叠加层

转载 作者:行者123 更新时间:2023-12-05 07:00:42 27 4
gpt4 key购买 nike

是否可以在 Bookdown 中使用类似 beamer 的叠加层?

我想要类似的 \only<...>\visible<...>在 Beamer 中,例如 (MWE):

\documentclass{beamer}
\begin{document}
\begin{frame}
First
\visible<2->{second}
\visible<3->{third}

{\only<1>{\color{red}} First}
{\only<2>{\color{red}} \visible<2->{second}}
{\only<3>{\color{red}} \visible<3->{third}}
\end{frame}
\end{document}

我的目标是创建在线 HTML 演示文稿(ioslides、slidy 或任何其他,这并不重要)和来自同一来源的可下载 PDF。这些演示文稿将是教育演示文稿(数学),显示一些练习的逐步解决方案(立即计算和解释)。

我怎样才能简单地做到这一点?

最佳答案

一个解决方案是使用 reveal.js与其 fragments :

Fragments are used to highlight or incrementally reveal individualelements on a slide. Every element with the class fragment will bestepped through before moving on to the next slide.

一个简单的 MWE:

---
title: "Reveal.js Fragments test"
output: revealjs::revealjs_presentation
---
# First frame
::: {.element: class="fragment" data-fragment-index="1"}
::: {.element: class="fragment highlight-current-red" data-fragment-index="2"}
test text
$a^2+b^2=c^2$
:::
:::

::: {.element: class="fragment" data-fragment-index="2"}
now red
:::

::: {.element: class="fragment" data-fragment-index="3"}
now not red
:::

::: {.element: class="fragment" data-fragment-index="2"}
with second element
:::

关于r - Bookdown 演示文稿中类似 Beamer 的叠加层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64076300/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com