Including images into Quarto

Session - Images

Zoë Turner

Adding images using markdown

The NHS-R Community logo taken from the GitHub repository directly

![](https://raw.githubusercontent.com/nhs-r-community/assets/main/logo/nhsr-logo.png)

Adding images using html

<a href='https://nhsrcommunity.com/'><img src='https://raw.githubusercontent.com/nhs-r-community/assets/main/logo/nhsr-logo.png' align="right" height="80" /></a>

Adding images using {knitr} and code chunks

This is for images that are available on the computer and in this case is to a folder called img which is part of the slide code:

knitr::include_graphics("img/purrr_cat.png")