11 lines
355 B
Bash
Executable File
11 lines
355 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#This script is used to compile md file using markdown
|
|
if [ "$2" = '' ]; then
|
|
out=${1/md/pdf}
|
|
else
|
|
out=$2
|
|
fi
|
|
|
|
pandoc -t beamer --citeproc --pdf-engine xelatex pres.md --bibliography /home/aselimov/typesetting/references.bib --csl /home/aselimov/typesetting/csl/custom_beamer_ref.csl -V theme:auriga -V colortheme:auriga -o $out
|