-
|
I am considering transitioning from latex to quarto for my current project. One thing I have not been able to get going is making use of the latex glossaries package in quarto. It does work as far as commands (which rely on my definitions inside Any suggestions how to tackle this? as small example how I implemented it in my _quarto.yml: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
@chrizz89 Maybe you already found the answer but this MWE qmd works for me.
---
format:
pdf:
documentclass: scrbook
include-in-header:
text: |
\usepackage[acronym, nonumberlist]{glossaries}
\makenoidxglossaries
\newglossaryentry{ex}{name={sample},description={an example}}
include-after-body:
text: |
\printnoidxglossaries
keep-tex: true
latex-clean: false
latex-min-runs: 3
---
Here's my \gls{ex} term.
prints this at the end |
Beta Was this translation helpful? Give feedback.

@chrizz89 Maybe you already found the answer but this MWE qmd works for me.
- textformat works). I changed the print command too.--- format: pdf: documentclass: scrbook include-in-header: text: | \usepackage[acronym, nonumberlist]{glossaries} \makenoidxglossaries \newglossaryentry{ex}{name={sample},description={an example}} include-after-body: text: | \printnoidxglossaries keep-tex: true latex-clean: false latex-min-runs: 3 --- Here's my \gls{ex} term.prints this at the end