lm(mpg ~ disp, data = mtcars)
Call:
lm(formula = mpg ~ disp, data = mtcars)
Coefficients:
(Intercept) disp
29.59985 -0.04122
NES.css Theme
for Quarto revealjs
Emil Hvitfeldt
Normal text
Bold text
italics
strikethrough
Code chunks and output
Dorothy followed her through many of the beautiful rooms in her castle.
library(palmerpenguins)
library(showtext)
library(ggplot2)
font_add_google("Press Start 2P")
showtext_auto()
colors <- c("#76c442", "#f2c409", "#ce372b")
ggplot(penguins) +
aes(bill_length_mm, bill_depth_mm,
color = species) +
geom_point() +
theme_minimal(base_family = "Press Start 2P") +
scale_color_manual(values = colors)
You can avoid showtext by having Press Start 2P font installed
A number of different css classes to help you highlight your code in .blue, .green, .red, .yellow
These also have dark variant, so we have .dark-blue, .dark-green, .dark-red, .dark-yellow
Social Media Icons
Many different icons
In different sizes
“is-small”
“is-medium”
“is-large”