Placeholders for abstracts
This commit is contained in:
parent
26adc07d36
commit
b6dfb262bb
3 changed files with 24 additions and 2 deletions
11
manuscrit/00_opening/main.tex
Normal file
11
manuscrit/00_opening/main.tex
Normal 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}
|
|
@ -1,10 +1,18 @@
|
||||||
# Latexmk is configured in .latexmkrc
|
# Latexmk is configured in .latexmkrc
|
||||||
BUILD_DIR=build
|
BUILD_DIR=build
|
||||||
|
AUX_DIR=$(BUILD_DIR)/aux
|
||||||
CLEANED_PDF=$(BUILD_DIR)/these.pdf
|
CLEANED_PDF=$(BUILD_DIR)/these.pdf
|
||||||
MAIN_PDF=$(BUILD_DIR)/main.pdf
|
MAIN_PDF=$(BUILD_DIR)/main.pdf
|
||||||
ALL=$(CLEANED_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)
|
$(CLEANED_PDF): $(MAIN_PDF)
|
||||||
qpdf "$<" --linearize "$@"
|
qpdf "$<" --linearize "$@"
|
||||||
|
|
|
@ -7,5 +7,8 @@
|
||||||
\title{Performance study: identifying bottlenecks by means of sensitivity analysis}
|
\title{Performance study: identifying bottlenecks by means of sensitivity analysis}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
Bonsoir.
|
\selectlanguage{english}
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\include{00_opening/main.tex}
|
||||||
\end{document}
|
\end{document}
|
||||||
|
|
Loading…
Add table
Reference in a new issue