Skip to content

Instantly share code, notes, and snippets.

@zorgick
Created July 14, 2020 15:42
Show Gist options
  • Save zorgick/4f37f9b06340981af453ee9da65d774c to your computer and use it in GitHub Desktop.
Save zorgick/4f37f9b06340981af453ee9da65d774c to your computer and use it in GitHub Desktop.
How to install tikz-uml package on different platforms

How to install tikz-uml package on Mac

#!/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

How to install tikz-uml package on Linux

#!/bin/sh
mkdir -p ~/texmf/tex/latex/tikz-uml/

cp ~/yourPath/tikz-uml.sty ~/texmf/tex/latex/tikz-uml/

texhash ~/texmf
@sskrzesz
Copy link

Thanks !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment