First draft of presentation

This commit is contained in:
Connor
2022-03-21 09:39:47 -06:00
parent e731ed16f5
commit 30fc2fbac8
26 changed files with 1393 additions and 68 deletions

View File

@@ -2,7 +2,7 @@ SRC_DIR = LaTeX/
THESIS_SRC_NAMES = thesis.tex thesis.bib approach.tex conclusion.tex introduction.tex \
results.tex trajectory_design.tex trajectory_optimization.tex
THESIS_SRC = $(addprefix $(SRC_DIR)/,$(THESIS_SRC_NAMES))
THESIS_PRES_SRC_NAMES = presentation.tex
THESIS_PRES_SRC_NAMES = presentation.tex presentation.bib
THESIS_PRES_SRC = $(addprefix $(SRC_DIR)/,$(THESIS_PRES_SRC_NAMES))
THESIS_PRES = presentation.pdf
THESIS_PDF = thesis.pdf
@@ -21,6 +21,9 @@ $(BUILD_DIR)/$(THESIS_PDF): $(BUILD_DIR) $(THESIS_SRC)
$(BUILD_DIR)/$(THESIS_PRES): $(BUILD_DIR) $(THESIS_PRES_SRC)
xelatex --output-directory $(BUILD_DIR) $(SRC_DIR)/presentation
bibtex $(BUILD_DIR)/presentation
xelatex --output-directory $(BUILD_DIR) $(SRC_DIR)/presentation
xelatex --output-directory $(BUILD_DIR) $(SRC_DIR)/presentation
$(THESIS_PDF): $(BUILD_DIR)/$(THESIS_PDF)
cp $(BUILD_DIR)/thesis.pdf .