Empty template repository for new courses and presentations. Uses CSC's slidefactory to easily generate slides in CSC style from markdown.
To help you get started, in the directory guide/ there are some guides,
instructions and handy tools:
If you haven't already installed slidefactory, please do so with the following command and follow the instructions of the installer:
make installUse your favourite editor to add new markdown slides (filename ending in
.md) into the directory docs/. To get started, there is an empty template
in docs/empty.md that can be copied.
Please see the Syntax Guide for Markdown for the special syntax used for the slides.
Convert your markdown slides into HTML files with the command:
makeThe command works both in the main directory as well as in docs/. It will
also generate an index file docs/index.html containing links to the HTML
slides that can be used to set up e.g. Github pages easily.
Of course, you can also use slidefactory directly, so e.g. with
slidefactory.sif *.md. Please see
slidefactory's documentation
for more detailed info.
To get also PDFs of your slides, please use the command:
make pdfIf you want, you can also clean up the repository of all the extra files (guides, empty markdown template) that are not strictly necessary with the command:
make purgeIf you want to remove the HTML (and PDF) files generated, you can do that with:
make clean