Advertisement
Guest User

Untitled

a guest
May 21st, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. tarea() {
  2. tarea_file=(*.md([1]))
  3. tarea=${tarea_file:t:r}
  4.  
  5. pandoc \
  6. --pdf-engine=xelatex \
  7. --filter=pandoc-citeproc \
  8. --toc \
  9. --template=/home/javier/.pandoc/templates/tarea \
  10. $tarea.md -o $tarea.pdf
  11. }
  12.  
  13. unadm() {
  14.  
  15. tarea_file=(*.md([1]))
  16. tarea=${tarea_file:t:r}
  17.  
  18. pandoc \
  19. --pdf-engine=xelatex \
  20. --filter=pandoc-citeproc \
  21. --toc \
  22. --template=/home/javier/.pandoc/templates/unadm \
  23. ${tarea}.md -o ${tarea}.pdf
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement