diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-10-31 16:51:15 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-10-31 16:51:15 +0100 |
commit | 0a1007067ad9f2f1d5d70362290e567c14acd83d (patch) | |
tree | 2491d6f1f2e24f99d6c1ac5f6cc6cf5d7223e14f /readme.md | |
parent | 8ea0137aeeb5cc32c0456a7e2b7c4cbd8b73f010 (diff) | |
parent | 4b12d1f1e6dbded47637ef8e2550741882d59329 (diff) |
Merge remote-tracking branch 'origin/master' into max/design
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -11,7 +11,7 @@ snippets for specific formatting. Prerequisites: - A LaTeX distribution that includes XeLaTeX and latexmk -- PlantUML +- PlantUML ([1.2024.7 or later](#plantuml)!) - Python 3 - Fonts (see see [style.md](./style.md) for download links) @@ -33,7 +33,30 @@ additional configuration files for the following editors: - `sources.bib` contains all bibliography entries / references - `glossary.bib` contains all glossary entries +## PlantUML + +To check if your PlantUML version is recent enough, run: +``` +$ plantuml -version +``` + +To upgrade PlantUML manually, download the latest (GPL) \.jar from +[here][plantuml], and overwrite the \.jar file installed by your package +manager: + +``` +$ curl -sLo- https://github.com/plantuml/plantuml/releases/download/v1.2024.7/plantuml-1.2024.7.jar > plantuml.jar +# mv plantuml.jar /usr/share/plantuml/plantuml.jar +``` + +> [!NOTE] +> Ubuntu, Debian and Mint all place PlantUML's \.jar file under +> `/usr/share/plantuml/plantuml.jar`, while it's under +> `/usr/share/java/plantuml/plantuml.jar` on Arch. Check the contents of the +> file returned by `command -v plantuml` to confirm this. + [vscode]: https://code.visualstudio.com [latexworkshop]: https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop [vimtex]: https://github.com/lervag/vimtex +[plantuml]: https://plantuml.com/en/download |