Skip to content

Instantly share code, notes, and snippets.

@zorgick
Created July 14, 2020 15:42
Show Gist options
  • Select an option

  • Save zorgick/4f37f9b06340981af453ee9da65d774c to your computer and use it in GitHub Desktop.

Select an option

Save zorgick/4f37f9b06340981af453ee9da65d774c to your computer and use it in GitHub Desktop.

Revisions

  1. zorgick created this gist Jul 14, 2020.
    31 changes: 31 additions & 0 deletions tikz-uml.md
    Original 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
    ```