A template presentation

Made with Quarto and RevealJS

SWC/GCNU Neuroinformatics Unit

2025-10-21

Contents

We can use all the normal markdown features here, like:

  • Bullet lists
  • Bold text
  • Italic text
  • Inline code

Just a code block, nothing gets executed…

… but there is some fancy highlighting

from pathlib import Path

home_path = Path.home()
if home_path.exists():
  data_path = home_path / "data"
else:
  pass
  # raise some error maybe?

A code block that’s actually executed at render-time

Code
from pathlib import Path

print("Hello world")
Hello world

You can execute code without showing that you have by using #|echo: false

Hello world

A slide imported from outside the qmd

This will become an example about how to use a common slide deck for the group.

An example image

Include an image:

Use a variable several times

Variables defined in the metadata is re-useable anywhere

  • I can use this wherever I want in the markdown, and change it in only once place :)

  • I can use this wherever I want in the markdown, and change it in only once place :)

Admonitions / Callouts

Note Callout

This is a note callout.

Tip Callout

This is a tip callout.

Warning Callout

This is a warning callout.

Citing references

  • To cite references, include them in the references.bib BibTeX file and then use the syntax [@citekey] to cite them.
  • For example, our preprint of the Blackcap brain atlas (Sirmpilatze et al. 2025).
  • You can preview the reference entry by hovering over the citation, cool!

References

This is how you create a references section, i.e. a bibliography.

Sirmpilatze, Nikoloz, Alessandro Felder, Dinora Abdulazhanova, Leonard Schwigon, Katrin Haase, Isabelle Musielak, Troy W. Margrie, et al. 2025. “Mapping the Magnetoreceptive Brain: A 3D Digital Atlas of the Migratory Bird Eurasian Blackcap ( Sylvia Atricapilla ).” https://doi.org/10.1101/2025.03.04.641293.