Skip to content

Commit

Permalink
Files restructuring, template for presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianCassayre committed Jun 16, 2022
1 parent 84207a8 commit 6f4d9c2
Show file tree
Hide file tree
Showing 50 changed files with 121 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
- name: Build thesis PDF
uses: xu-cheng/latex-action@v2
with:
working_directory: report
working_directory: thesis/report
root_file: thesis.tex
args: -pdf -file-line-error -halt-on-error -interaction=nonstopmode -shell-escape
extra_system_packages: inkscape
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: thesis
path: report/thesis.pdf
path: thesis/report/thesis.pdf
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Build thesis PDF
uses: xu-cheng/latex-action@v2
with:
working_directory: report
working_directory: thesis/report
root_file: thesis.tex
args: -pdf -file-line-error -halt-on-error -interaction=nonstopmode -shell-escape
extra_system_packages: inkscape
Expand All @@ -47,5 +47,5 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
working_directory: report
working_directory: thesis/report
args: thesis.pdf
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@ lazy val root = (project in file(".")).dependsOn(lisa, masterproject)
* [`util`](src/main/scala/me/cassayre/florian/masterproject/util): some utilities for LISA
* [`legacy`](src/main/scala/me/cassayre/florian/masterproject/legacy): old proof-of-concept implementations that are kept for reference
* [`test`](src/main/scala/me/cassayre/florian/masterproject/test): main methods that serve as examples or test files
* [Weekly notes](notes/weekly) relating the work done stating the future objectives
* [Documentation](notes/documentation) about the various components
* [Weekly notes](resources/notes/weekly) relating the work done stating the future objectives
* [Documentation](resources/notes/documentation) about the various components
* [Thesis](thesis) the deliverables other than the code itself

## Development

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions thesis/presentation/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
LATEXCMD = pdflatex --shell-escape presentation.tex

fast:
$(LATEXCMD)

thesis:
$(LATEXCMD) && $(LATEXCMD)

clean:
rm -rf *.aux *.bbl *.bcf *.blg *.lof *.log *.lot *.toc *.xml svg-inkscape *.pdf
File renamed without changes
38 changes: 38 additions & 0 deletions thesis/presentation/presentation.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
\documentclass{beamer}
\usetheme{CambridgeUS}
\usepackage{svg}
\usepackage{amsmath}
\usepackage[utf8]{inputenc}

% Source: https://www.epfl.ch/about/overview/wp-content/uploads/2020/06/EPFL-brand-guidelines.pdf
\definecolor{epfl-rouge}{RGB}{255,0,0}
\definecolor{epfl-groseille}{RGB}{181,31,31}
\definecolor{epfl-leman}{RGB}{0,167,159}
\definecolor{epfl-canard}{RGB}{0,116,128}
\definecolor{epfl-taupe}{RGB}{65,61,58}
\definecolor{epfl-perle}{RGB}{200,199,199}

\setbeamercolor*{palette primary}{bg=epfl-taupe, fg=white}
\setbeamercolor*{palette secondary}{bg=epfl-perle, fg=black}
\setbeamercolor*{palette tertiary}{bg=epfl-groseille, fg=white}
%\setbeamercolor*{palette quaternary}{bg=blue, fg=green}

\title[Master Thesis]{A front-end for LISA}
\subtitle{Master Thesis}
\author{Florian Cassayre}
\date{June 2022}

\institute[EPFL]{École polytechnique fédérale de Lausanne}
\date{2022-07-21}
\titlegraphic{\leavevmode\smash{\raisebox{5.9cm}{\includesvg[width=3cm]{figures/epfl-logo}}}}

\begin{document}

\frame{\titlepage}

\begin{frame}
\frametitle{My title}
My text on the first slide.
\end{frame}

\end{document}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
66 changes: 66 additions & 0 deletions thesis/report/figures/epfl-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6f4d9c2

Please sign in to comment.