mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-21 22:34:21 +00:00
🎓 Perhaps escaping is mandatory
This commit is contained in:
parent
ef6a53bdd1
commit
e5e897b192
1 changed files with 5 additions and 5 deletions
10
.github/workflows/build-sphinx-thesis.yml
vendored
10
.github/workflows/build-sphinx-thesis.yml
vendored
|
@ -79,19 +79,19 @@ jobs:
|
||||||
make latex
|
make latex
|
||||||
- name: "Remove numbering from subsections"
|
- name: "Remove numbering from subsections"
|
||||||
working-directory: thesis/build/latex/
|
working-directory: thesis/build/latex/
|
||||||
run: sed --regexp-extended --in-place 's/[\]subsection[{]/\subsection*{/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
run: sed --regexp-extended --in-place 's/[\]subsection[{]/\\subsection*{/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
||||||
- name: "Remove numbering from subsubsections"
|
- name: "Remove numbering from subsubsections"
|
||||||
working-directory: thesis/build/latex/
|
working-directory: thesis/build/latex/
|
||||||
run: sed --regexp-extended --in-place 's/[\]subsubsection[{]/\subsubsection*{/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
run: sed --regexp-extended --in-place 's/[\]subsubsection[{]/\\subsubsection*{/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
||||||
- name: "Remove numbering from paragraphs"
|
- name: "Remove numbering from paragraphs"
|
||||||
working-directory: thesis/build/latex/
|
working-directory: thesis/build/latex/
|
||||||
run: sed --regexp-extended --in-place 's/[\]paragraph[{]/\paragraph*{/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
run: sed --regexp-extended --in-place 's/[\]paragraph[{]/\\paragraph*{/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
||||||
- name: "Remove numbering from subparagraphs"
|
- name: "Remove numbering from subparagraphs"
|
||||||
working-directory: thesis/build/latex/
|
working-directory: thesis/build/latex/
|
||||||
run: sed --regexp-extended --in-place 's/[\]subparagraph[{]/\subparagraph*{/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
run: sed --regexp-extended --in-place 's/[\]subparagraph[{]/\\subparagraph*{/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
||||||
- name: "Add appendix macro"
|
- name: "Add appendix macro"
|
||||||
working-directory: thesis/build/latex/
|
working-directory: thesis/build/latex/
|
||||||
run: sed --regexp-extended --in-place 's/[\]chapter[{]Installazione di Sophon[}]/\appendix\chapter{Installazione di Sophon}/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
run: sed --regexp-extended --in-place 's/[\]chapter[{]Installazione di Sophon[}]/\\appendix\\chapter{Installazione di Sophon}/g' progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
||||||
- name: "Remove autogenerated indexes"
|
- name: "Remove autogenerated indexes"
|
||||||
working-directory: thesis/
|
working-directory: thesis/
|
||||||
run: python latex_index_remover.py
|
run: python latex_index_remover.py
|
||||||
|
|
Loading…
Reference in a new issue