You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 line
610 B

  1. echo ================================================
  2. echo Starting Tex Export
  3. echo ================================================
  4. FILENAME=manual
  5. emacsclient -c --frame-parameters="((visibility . nil))" \
  6. -e "(progn (require 'org) (find-file-other-window \"$FILENAME.org\") (org-latex-export-to-latex) (save-buffers-kill-terminal))" || exit 1
  7. echo ================================================
  8. echo Tex Export Finished
  9. echo ================================================
  10. latexmk -Werror -pdf -shell-escape $FILENAME.tex || exit 1
  11. latexmk -c $FILENAME.tex