Project title

INFO 526 - Fall 2023 - Project 1

Author names

Using Quarto for presentations

Quarto

  • The presentation is created using the Quarto CLI

  • ## sets the start of a new slide

Layouts

You can use plain text

  • or bullet points1

or in two columns

  • like

  • this

Code

# A tibble: 2 × 5
  term        estimate std.error statistic       p.value
  <chr>          <dbl>     <dbl>     <dbl>         <dbl>
1 (Intercept)   25.3      3.08        8.22 0.00000000358
2 speed         -0.116    0.0642     -1.81 0.0806       
# A tibble: 1 × 12
  r.squared adj.r.squared sigma statistic p.value    df logLik   AIC   BIC
      <dbl>         <dbl> <dbl>     <dbl>   <dbl> <dbl>  <dbl> <dbl> <dbl>
1    0.0983        0.0682  5.82      3.27  0.0806     1  -101.  207.  212.
# ℹ 3 more variables: deviance <dbl>, df.residual <int>, nobs <int>

Plots

Plot and text

  • Some text

  • goes here

A new section…

Tables

If you want to generate a table, make sure it is in the HTML format (instead of Markdown or other formats), e.g.,

species island bill_length_mm bill_depth_mm flipper_length_mm body_mass_g sex
Adelie Torgersen 39.1 18.7 181 3750 male
Adelie Torgersen 39.5 17.4 186 3800 female
Adelie Torgersen 40.3 18.0 195 3250 female
Adelie Torgersen NA NA NA NA NA
Adelie Torgersen 36.7 19.3 193 3450 female
Adelie Torgersen 39.3 20.6 190 3650 male

Images

Image credit: Danielle Navarro, Percolate.

Math Expressions

You can write LaTeX math expressions inside a pair of dollar signs, e.g. $\alpha+\beta$ renders \(\alpha + \beta\). You can use the display style with double dollar signs:

$$\bar{X}=\frac{1}{n}\sum_{i=1}^nX_i$$

\[ \bar{X}=\frac{1}{n}\sum_{i=1}^nX_i \]

Limitations:

  1. The source code of a LaTeX math expression must be in one line, unless it is inside a pair of double dollar signs, in which case the starting $$ must appear in the very beginning of a line, followed immediately by a non-space character, and the ending $$ must be at the end of a line, led by a non-space character;

  2. There should not be spaces after the opening $ or before the closing $.

Wrap up

Feeling adventurous?

  • You are welcomed to use the default styling of the slides. In fact, that's what I expect majority of you will do. You will differentiate yourself with the content of your presentation.

  • But some of you might want to play around with slide styling. Some solutions for this can be found at https://quarto.org/docs/presentations/revealjs.