New folder structure

This commit is contained in:
2023-04-03 17:47:42 +02:00
commit a2bdf977d9
42 changed files with 2055 additions and 0 deletions

11
Compilers/compilaLatexPDF.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
if [ $# -ne 2 ]
then
echo "./ejecutable auxiliar/ fichero.tex"
exit 1
fi
dir=$(pwd)
#pdflatex --output-directory="$dir/$1" "$dir/$2"
xelatex --output-directory="$dir/$1" "$dir/$2"
pdf=$(echo $2 | awk -F'.tex' '{print $1}')
mv "$dir/$1/$pdf.pdf" "$dir/"