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.
11 lines
371 B
11 lines
371 B
4 years ago
|
#!/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 --template press -V theme:auriga -V colortheme:auriga -o $out
|