mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 14:54:22 +00:00
🔨 Try using the -i option
This commit is contained in:
parent
9b7c2fb630
commit
e46caac242
1 changed files with 8 additions and 6 deletions
14
.github/workflows/build-sphinx-thesis.yml
vendored
14
.github/workflows/build-sphinx-thesis.yml
vendored
|
@ -77,13 +77,15 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
source $pythonLocation/activate
|
source $pythonLocation/activate
|
||||||
make latex
|
make latex
|
||||||
- name: "Remove numbering from subsubsections and lower headings"
|
- name: "Remove numbering from subsubsections"
|
||||||
working-directory: thesis/build/latex/
|
working-directory: thesis/build/latex/
|
||||||
# Doesn't work by using < and >. I have no idea why.
|
run: sed --regexp-extended --in-place s/\subsubsection[{]/\subsubsection*{/g progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
||||||
run: |
|
- name: "Remove numbering from paragraphs"
|
||||||
cat progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex | sed -E s/\subsubsection[{]/\subsubsection*{/g | tee progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
working-directory: thesis/build/latex/
|
||||||
cat progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex | sed -E s/\paragraph[{]/\paragraph*{/g | tee progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
run: sed --regexp-extended --in-place s/\paragraph[{]/\paragraph*{/g progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
||||||
cat progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex | sed -E s/\subparagraph[{]/\subparagraph*{/g | tee progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
- name: "Remove numbering from subparagraphs"
|
||||||
|
working-directory: thesis/build/latex/
|
||||||
|
run: sed --regexp-extended --in-place s/\subparagraph[{]/\subparagraph*{/g progettazioneesviluppodisophonapplicativocloudasupportodellaricerca.tex
|
||||||
- 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