-
Notifications
You must be signed in to change notification settings - Fork 0
1.10 Export Presentations
Version: 1.0.0-rc.4 Last updated: 2026-07-20
This page covers every export route: documents (PDF, Word), presentations (reveal.js, Beamer) and books.
| Format | Extension | Description |
|---|---|---|
.pdf |
Typeset document via Pandoc + XeLaTeX | |
| Word | .docx |
Microsoft Word document, template support |
| reveal.js presentation | .html |
Web slide deck, online or self-contained |
| Presentation PDF | .pdf |
Printable slide deck |
| Beamer | .pdf |
LaTeX slide deck (presentation projects) |
- Pandoc installed
- LaTeX (XeLaTeX) installed
The export window tells you whether both were found before you start.
- Open Export (or
Ctrl/Cmd+E) - Choose PDF
- Set the title, author and output file
- Click Export
| Option | Description |
|---|---|
| Scope | Whole book or a single chapter (book projects only) |
| CSL style | Citation style — Chicago (notes-bibliography) or MLA bundled, or bring your own .csl
|
| Locale | Language of the generated citations |
| Abstract | Read automatically from abstract.md
|
Produces a .docx readable by Microsoft Word and LibreOffice.
- Export → Word
- Pick a template (optional)
- Choose the output file
You can use a custom .dotx template:
- Put the template in the project folder
- The export detects it
- Styles or placeholders are applied, depending on whether a bibliography is attached — see the Word Templates guide for which mechanism you'll actually get.
Available placeholders (apply in every case except bibliography + Pandoc + no citation engine requested — see the Word Templates guide for the full three-condition breakdown): {title}, {author}, {date}, {content},
{abstract}.
See the Word Templates guide.
For presentation projects.
Three modes, chosen in the export window:
| Mode | Result |
|---|---|
| Online | A light HTML file; reveal.js is loaded from a CDN (needs a connection when presenting) |
| Offline | A self-contained HTML file, everything embedded — usable with no network, in a conference room |
| A printable deck |
The Beamer route (LaTeX) remains available for a classic academic look; configure it in the project settings.
New in RC3. The YAML block at the top of slides.md configures the export:
---
title: "Danzig, 1919-1939"
author: Frédéric Clavert
theme: night
transition: fade
---These values complete reveal-config.json. The title and author typed in
the export window take precedence.
A line starting with Note: inside a slide becomes a speaker note in the
reveal.js export.
New in RC3. In a book project, the export window offers a scope:
- Whole book — chapters are assembled in manifest order, with numbered chapters, a table of contents, and front and back matter in place;
- This chapter only — a working proof, for a re-read or for sending a single contribution.
Note style (footnotes, endnotes per chapter, endnotes at the end) and bibliography placement (one or one per chapter) follow the book settings, which have had a dialog since RC4 — see Books and Chapters.
Assembly is correct for PDF and, since RC4, for Word too: a book
exported with a bibliography attached used to come out empty of chapter
content. Note style remains PDF/LaTeX only in Word, since it relies on
LaTeX commands a .docx cannot express.
If your document contains citations ([@citekey]), the bibliography is:
- generated at the end of the document (or of each chapter, if you asked for that);
- formatted according to the chosen CSL style;
- limited to the references actually cited.
Only two styles are bundled — Chicago (notes-bibliography) is the default:
| Style | Field |
|---|---|
| Chicago (notes-bibliography) | History, humanities — footnote-style, not author-date |
| MLA | Literature, languages |
For anything else — APA, Harvard, IEEE, or a journal-specific style — bring your own CSL file (see below); ClioDeck isn't limited to the two bundled ones.
- Download one from the Zotero Style Repository
- Put the
.cslfile in the project - Select it from the Project panel's CSL settings (
cslPath)
- Pandoc or LaTeX not installed →
brew install pandoc(macOS), MacTeX or TeX Live for LaTeX - An error in the markdown itself — the export window shows Pandoc's message
- Check the keys (
[@citekey]) against your bibliography — the Check citations button lists the missing ones - Make sure a bibliography is attached to the project
- Use paths relative to the document
- Check that the image files exist
| Action | Shortcut |
|---|---|
| Export | Ctrl/Cmd+E |