10:00
Workshop: Quarto for R & RStudio
posit::conf 2023
Presentations, like any Quarto document,
format: revealjs
This slide deck is in desperate need of some help. Let’s…
Pick up where we left off and modify then YAML to…
10:00
This slide deck is in desperate need of some help. Let’s…
/*-- scss:defaults --*/
// fonts
$font-family-sans-serif: "Palatino Linotype", serif !default;
// colors
$body-bg: #f0f1eb !default;
// headings
$presentation-heading-font: "Palatino Linotype", serif !default;
$presentation-heading-color: #383d3d !default;
/*-- scss:rules --*/
blockquote {
margin-left: 80px !important;
}
It’s time to make this presentation really shine. Use SASS variables to
#
instead of ##
(docs).Return to Our Turn
. . .
on a new line to introduce a break in the slide that you can click to advance..fragment
class to any div or span to reveal on click (docs)..incremental
class to a div outside a list to incrementally reveal list items (docs).incremental: true
option in yaml under format: revealjs
..nonincremental
class on a div.Return to Our Turn
Nest .column
divs inside a .columns
div and specify their width (docs)
:::{.columns}
:::{.column width="50%"}
Here is the stuff on the left.
:::
:::{.column width="50%"}
Here is the stuff on the right.
:::
:::
Return to Our Turn
Naive way: put a code cell in left column with eval: false
and a copy of it in the right column with echo: false
.
Instead, try putting both of those code cells in a div with .panel-tabset
. Precede each cell block with a level 2 header to serve as the label for each tab.
Better yet: remove the tabset and the columns. Add the code cell option.
This will put it in the right column and appear after a click. Read the docs for other good options (docs)
Return to Our Turn