R is for
Authoring!!

OOH Session #92…
…“Fencing”

Open Office Hours
(August 26, 2025)

Recap of Session
#91:

…back to the ’s

adornment:

![imagename](filename.jpg)

{{< placeholder >}}
1
[imagename] will render differently across different outputs (although this can be overridden). Many modifications can be made typically using curly brackets {}
2
Didn’t cover last week, but neat option for “I want to put something there but don’t quite have it nailed down yet”

beautification:

@import url('https://fonts.googleapis.com/css?family=Great Vibes');

.whatyawant {
  color: #7d7d7d; 
  font-family: Great Vibes;
}

This is [Fencing]{.whatyawant}

This is Fencing

bibliography:

  1. grab \(BibTeX\) spec from
  2. save within “your.bib” file
  3. call out bibliography: your.bib within YAML
  4. use “@citekey” within document body

chunks/code-blocks:

data(mtcars)

hist(mtcars$mpg)

cross–references:

![](img/title92.JPG){#fig-title width=2in}

see @fig-title
Figure 1

see Figure 1

Today…

…“Fencing”!!!

Session Info (August 26, 2025) Rendering:

R version 4.5.0 (2025-04-11 ucrt)
Platform: x86_64-w64-mingw32/x64
Running under: Windows 10 x64 (build 19045)

Matrix products: default
  LAPACK version 3.12.1

locale:
[1] LC_COLLATE=English_United States.utf8 
[2] LC_CTYPE=English_United States.utf8   
[3] LC_MONETARY=English_United States.utf8
[4] LC_NUMERIC=C                          
[5] LC_TIME=English_United States.utf8    

time zone: America/Chicago
tzcode source: internal

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
 [1] compiler_4.5.0    fastmap_1.2.0     cli_3.6.5         tools_4.5.0      
 [5] htmltools_0.5.8.1 rstudioapi_0.17.1 yaml_2.3.10       rmarkdown_2.29   
 [9] knitr_1.50        jsonlite_2.0.0    xfun_0.52         digest_0.6.37    
[13] rlang_1.1.6       evaluate_1.0.4