Placeholders for abstracts

This commit is contained in:
Théophile Bastian 2023-09-13 16:39:44 +02:00
parent 26adc07d36
commit b6dfb262bb
3 changed files with 24 additions and 2 deletions

View file

@ -0,0 +1,11 @@
\selectlanguage{french}
\begin{abstract}
Ceci est le résumé de ma thèse. C'est fou, non ?
\end{abstract}
\clearpage
\selectlanguage{english}
\begin{abstract}
This is my PhD's abstract. Check it out.
\end{abstract}

View file

@ -1,10 +1,18 @@
# Latexmk is configured in .latexmkrc
BUILD_DIR=build
AUX_DIR=$(BUILD_DIR)/aux
CLEANED_PDF=$(BUILD_DIR)/these.pdf
MAIN_PDF=$(BUILD_DIR)/main.pdf
ALL=$(CLEANED_PDF)
all: $(ALL)
all: _setup $(ALL)
.PHONY: _setup
_setup:
for dir in $$(find . -name '*.tex' -and -not -path './$(BUILD_DIR)/*'); do \
mkdir -p "$(AUX_DIR)/$$(dirname "$$dir")"; \
done
$(CLEANED_PDF): $(MAIN_PDF)
qpdf "$<" --linearize "$@"

View file

@ -7,5 +7,8 @@
\title{Performance study: identifying bottlenecks by means of sensitivity analysis}
\begin{document}
Bonsoir.
\selectlanguage{english}
\maketitle
\include{00_opening/main.tex}
\end{document}