10 lines
191 B
Bash
10 lines
191 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir -p ~/Library/texmf/tex/latex
|
||
|
ln -s "`realpath tex`" ~/Library/texmf/tex/latex/
|
||
|
|
||
|
pdflatex \
|
||
|
-interaction=nonstopmode \
|
||
|
-output-directory pdf \
|
||
|
"`realpath "$1"`"
|