mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 06:44:21 +00:00
🎓 Use dirty hacks to remove indexes
This commit is contained in:
parent
842b540dc6
commit
ed9592ca14
1 changed files with 13 additions and 4 deletions
17
.github/workflows/build-sphinx-thesis.yml
vendored
17
.github/workflows/build-sphinx-thesis.yml
vendored
|
@ -79,16 +79,25 @@ 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: "Rename genindex to 'Indice analitico'"
|
||||||
|
working-directory: thesis/build/latex/
|
||||||
|
run: sed --regexp-extended --in-place s/[{][\]indexname[}][{]Indice[}]/{\indexname}{Indice analitico}/g
|
||||||
|
- name: "Remove modindex"
|
||||||
|
working-directory: thesis/build/latex/
|
||||||
|
run: sed --regexp-extended --in-place s/[\]renewcommand[{][\]indexname[}][{]Indice del modulo Python[}].*[\]end[{]sphinxtheindex[}]//g
|
||||||
|
- name: "Remove routing table"
|
||||||
|
working-directory: thesis/build/latex/
|
||||||
|
run: sed --regexp-extended --in-place s/[\]renewcommand[{][\]indexname[}][{]HTTP Routing Table[}].*[\]end[{]sphinxtheindex[}]//g
|
||||||
- name: "Build PDF document with Latexmk"
|
- name: "Build PDF document with Latexmk"
|
||||||
working-directory: thesis/build/latex/
|
working-directory: thesis/build/latex/
|
||||||
run: make
|
run: make
|
||||||
|
|
Loading…
Reference in a new issue