Tagged Questions
1
vote
1answer
129 views
How come compiling my .tex file with my alias is lagging?
I have written an alias in ~/.bashrc to compile my tex files into pdfs. I am sure that ~/.bashrc is sourced.
alias p='rm -f *.pdf *.log *.aux;pdflatex *.tex;open *.pdf'
However, after I edit my ...