diff options
author | xengineering <me@xengineering.eu> | 2024-10-12 13:02:58 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-10-12 13:04:28 +0200 |
commit | 263787bae1d698ebc7aa9cc6581b69d258dcca7d (patch) | |
tree | b0363025efc87a1894ea085fbecdf144f1adfba1 | |
parent | 17b8d231406c2365d06cdd8b048b3495705be0df (diff) | |
download | soundbox-263787bae1d698ebc7aa9cc6581b69d258dcca7d.tar soundbox-263787bae1d698ebc7aa9cc6581b69d258dcca7d.tar.zst soundbox-263787bae1d698ebc7aa9cc6581b69d258dcca7d.zip |
doc: Fix quote characters
LaTeX used to convert `'` quotes to a `’` even in verbatim environments.
This is unsuitable to copy commands from the documentation to the Linux
command line interface.
Since this use case is very important to use the documentation this has
to be fixed. Using the `upquote` package is sufficient to prevent the
conversion.
-rw-r--r-- | doc/documentation.tex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/documentation.tex b/doc/documentation.tex index 885b215..b2f912b 100644 --- a/doc/documentation.tex +++ b/doc/documentation.tex @@ -8,6 +8,7 @@ \usepackage{array} \usepackage{hyperref} \usepackage{parskip} +\usepackage{upquote} \begin{document} |