diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 01174a4..139dc3d 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -5,7 +5,7 @@ on: - main - master env: - LATEX_ROOT: ise-lab-template + LATEX_ROOT: ise-lab-knowledge-representation jobs: compile: runs-on: ubuntu-latest diff --git a/.gitignore b/.gitignore index a0ceae4..9bfaa25 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -ise-lab-template.pdf +ise-lab-knowledge-representation.pdf ## Core latex/pdflatex auxiliary files: *.aux diff --git a/ise-lab-template.bib b/ise-lab-knowledge-representation.bib similarity index 100% rename from ise-lab-template.bib rename to ise-lab-knowledge-representation.bib diff --git a/ise-lab-template.sty b/ise-lab-knowledge-representation.sty similarity index 100% rename from ise-lab-template.sty rename to ise-lab-knowledge-representation.sty diff --git a/ise-lab-template.tex b/ise-lab-knowledge-representation.tex similarity index 98% rename from ise-lab-template.tex rename to ise-lab-knowledge-representation.tex index 13adc50..5e63e45 100644 --- a/ise-lab-template.tex +++ b/ise-lab-knowledge-representation.tex @@ -10,11 +10,11 @@ %\documentclass[handout]{beamer}\mode{\usetheme{AMSBolognaFC}} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usepackage{ise-lab-common} -\usepackage{ise-lab-template} +\usepackage{ise-lab-knowledge-representation} % version \newcommand{\versionmajor}{0} \newcommand{\versionminor}{1} -\newcommand{\versionpatch}{1} +\newcommand{\versionpatch}{2} \newcommand{\version}{\versionmajor.\versionminor.\versionpatch} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \title[\currentLab{} -- Short Title]{ @@ -383,7 +383,7 @@ \section*{\refname} \scriptsize % \footnotesize \bibliographystyle{apalike-AMS} - \bibliography{ise-lab-template} + \bibliography{ise-lab-knowledge-representation} \end{frame} %///////// diff --git a/rename-template.sh b/rename-template.sh deleted file mode 100755 index 7a785cc..0000000 --- a/rename-template.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!bash - -NEW_NAME=$1 - -if [[ -z "$NEW_NAME" ]]; then - echo "Must provide a new name as argument" 1>&2 - exit 1 -fi - -for EXT in tex sty bib; do - mv ise-lab-template.$EXT ise-lab-$NEW_NAME.$EXT -done - -for FILE in `ls ise-lab-$NEW_NAME.{tex,sty,bib} .gitignore .github/workflows/*.yml`; do - sed -i "s/ise-lab-template/ise-lab-$NEW_NAME/g" $FILE -done - -rm *.sh