- Notifications
You must be signed in to change notification settings - Fork11
A LuaLaTeX package for PlantUML in LaTeX
License
koppor/plantuml
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A LuaLaTeX package for PlantUML in LaTeX
PlantUML is a program which transforms text into UML diagrams.This package allows for embedding PlantUML diagrams using the PlantUML source.
Currently, this project runs withlualatex only.Checkissue #1 for the current state of affairs for support pdflatex.
- Environment variable
PLANTUML_JAR
set to the location ofplantuml.jar
.You get it fromhttps://sourceforge.net/projects/plantuml/files/plantuml.jar/download. - Windows: Environment variable
GRAPHVIZ_DOT
set to the location ofdot.exe
.Example:C:\Program Files (x86)\Graphviz2.38\bin\dot.exe
.You can install graphviz usingchoco install graphviz
. - lualatex available with command line parameter
-shell-escape
included. - In case you want to have the images as PDFs (and not using TikZ or PNG), ensure that
inkscape.exe
andpdfcrop
are in your path.You can get inkscape usingchoco install inkscape
.pdfcrop
should be part of your latex distribution.
LaTeX source:
\documentclass{scrartcl}\usepackage{plantuml}\begin{document}\begin{plantuml} @startuml Alice -> Bob: test @enduml\end{plantuml}\end{document}
Compilation:lualatex -shell-escape example-minimal
Result:
LaTeX source:
\documentclass{scrartcl}\usepackage{graphics}\usepackage{epstopdf}\epstopdfDeclareGraphicsRule{.svg}{pdf}{.pdf}{ inkscape #1 --export-filename=\OutputFile}\usepackage[output=svg]{plantuml}\begin{document}\begin{plantuml}@startumlclass CarDriver - Car : drives >Car *- Wheel : have 4 >Car -- Person : < owns@enduml\end{plantuml}\end{document}
For older Inkscape use this LaTeX source:
\documentclass{scrartcl}\usepackage{graphics}\usepackage{epstopdf}\epstopdfDeclareGraphicsRule{.svg}{pdf}{.pdf}{ inkscape -z --file=#1 --export-pdf=\OutputFile}\usepackage[output=svg]{plantuml}\begin{document}\begin{plantuml}@startumlclass CarDriver - Car : drives >Car *- Wheel : have 4 >Car -- Person : < owns@enduml\end{plantuml}\end{document}
Compilation:lualatex -shell-escape example-class-relations
Result:
Your latex distribution should take care.
For manual installation, copyplantuml.*
to your localtexmf
folder in the sub directoytex/latex/plantuml
.Seethe discussion at tex.sx for the concrete location of the folder on your system.
The release is built usingGitHub Actions (workflow file) usingrelease.sh
.
Release preparation:
- Adapt copyright year (line 1)
- Adapt as date and version number (line 6) in
plantuml.sty
. - Adapt
CHANGELOG.md
. - Set a git tag and push.
TikZ-UML is a very powerful package based onTikZ.More alternative solutions are collected at theCTAN topic UML.
SPDX-License-Identifier: LPPL-1.3c+
About
A LuaLaTeX package for PlantUML in LaTeX