mirror of
https://gitlab.com/OpenAlt/OpenAltRO/openalt-graphics/promo-graphics.git
synced 2026-09-24 14:26:50 +00:00
30 lines
838 B
Bash
30 lines
838 B
Bash
#!/bin/bash
|
|
|
|
cat <<EOF
|
|
##################################################################
|
|
###############[ Script by: @bashynx ]################
|
|
##################################################################
|
|
#[ DESCRIPTION : Generate graphics for OpenAlt Romania. ]#
|
|
#[ Make sure you set up data.tex file before use ]#
|
|
##################################################################
|
|
|
|
EOF
|
|
|
|
rm *.pdf
|
|
|
|
echo "Generating social_promo"
|
|
xelatex social_promo.tex >> openalt.log
|
|
sleep 1
|
|
pdftoppm -png -r 600 social_promo.pdf 01_social_promo
|
|
|
|
echo "Generating social_agenda"
|
|
xelatex social_agenda.tex >> openalt.log
|
|
sleep 1
|
|
pdftoppm -png -r 600 social_agenda.pdf 01_social_agenda
|
|
|
|
echo "Generating poster"
|
|
xelatex poster.tex >> openalt.log
|
|
sleep 1
|
|
pdftoppm -png -r 600 poster.pdf 01_poster
|
|
|
|
rm *.aux *.log
|