Created
July 14, 2020 15:42
-
-
Save zorgick/4f37f9b06340981af453ee9da65d774c to your computer and use it in GitHub Desktop.
Revisions
-
zorgick created this gist
Jul 14, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ How to install tikz-uml package on Mac ```sh #!/bin/sh mkdir -p ~/Library/texmf/tex/latex/tikz-uml/ # It doesn't really matter where to save this file cp ~/Downloads/tikzuml-v1.0b/tikz-uml.sty ~/Library/texmf/tex/latex/tikz-uml/ texhash ~/Library/texmf/tex/latex/tikz-uml/ # This line is what really matters ``` How to install tikz-uml package on Windows - console: https://tex.stackexchange.com/questions/69483/create-a-local-texmf-tree-in-miktex - or gui: https://miktex.org/howto/miktex-console How to install tikz-uml package on Linux ```sh #!/bin/sh mkdir -p ~/texmf/tex/latex/tikz-uml/ cp ~/yourPath/tikz-uml.sty ~/texmf/tex/latex/tikz-uml/ texhash ~/texmf ```