project: initial pandoc template
This commit is contained in:
commit
ae17115f19
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/figs/* filter=lfs diff=lfs merge=lfs -text
|
4
Makefile
Normal file
4
Makefile
Normal file
|
@ -0,0 +1,4 @@
|
|||
all: report.pdf
|
||||
|
||||
report.pdf: report.md begin-document.tex config.yaml header.tex
|
||||
pandoc --defaults config.yaml
|
42
begin-document.tex
Normal file
42
begin-document.tex
Normal file
|
@ -0,0 +1,42 @@
|
|||
%---------------------------------------------------------------------------------
|
||||
% Preamble
|
||||
%---------------------------------------------------------------------------------
|
||||
|
||||
\title{
|
||||
{Promotion 2021 \hfill Majeure IMAGE}\\
|
||||
\vspace{3cm}
|
||||
{\Huge \textbf{End of studies internship report}}\\
|
||||
\vspace{1.5cm}
|
||||
{\large Internship from 2021-03-01 to 2021-09-01 at :} \\
|
||||
\vspace{0.3cm}
|
||||
{\huge IMC BV} \\
|
||||
\vspace{0.5cm}
|
||||
{\large With the subject :} \\
|
||||
\vspace{0.2cm}
|
||||
{Benchmark IMC's new exchange connectivity service} \\
|
||||
\vspace{1cm}
|
||||
{\large Under the mentorship of : \\ Jelle Wissink} \\
|
||||
}
|
||||
|
||||
%\author{Christelle Zouein \\ \\ christelle.zouein@epita.fr}
|
||||
%\date{February 2021}
|
||||
\date{} % for an empty page
|
||||
\author{}
|
||||
%---------------------------------------------------------------------------------
|
||||
% Title Page
|
||||
%---------------------------------------------------------------------------------
|
||||
\maketitle
|
||||
\thispagestyle{title}
|
||||
|
||||
\newpage
|
||||
|
||||
%---------------------------------------------------------------------------------
|
||||
% Contents
|
||||
%---------------------------------------------------------------------------------
|
||||
\tableofcontents
|
||||
|
||||
\newpage
|
||||
|
||||
%---------------------------------------------------------------------------------
|
||||
% Body
|
||||
%---------------------------------------------------------------------------------
|
29
config.yaml
Normal file
29
config.yaml
Normal file
|
@ -0,0 +1,29 @@
|
|||
from: markdown
|
||||
to: pdf
|
||||
|
||||
output-file: output.pdf
|
||||
input-files:
|
||||
- report.md
|
||||
|
||||
variables:
|
||||
documentclass: article
|
||||
classoptions:
|
||||
- 12pt
|
||||
- french
|
||||
- a4paper
|
||||
|
||||
include-before-body:
|
||||
- begin-document.tex
|
||||
include-after-body: []
|
||||
include-in-header:
|
||||
- header.tex
|
||||
resource-path: ["."]
|
||||
|
||||
metadata:
|
||||
author:
|
||||
- Bruno BELANYI
|
||||
|
||||
pdf-engine: pdflatex
|
||||
table-of-contents: true
|
||||
toc-depth: 1
|
||||
number-sections: true
|
BIN
figs/epita-banner.png
(Stored with Git LFS)
Normal file
BIN
figs/epita-banner.png
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
figs/linkedin.png
(Stored with Git LFS)
Normal file
BIN
figs/linkedin.png
(Stored with Git LFS)
Normal file
Binary file not shown.
60
header.tex
Normal file
60
header.tex
Normal file
|
@ -0,0 +1,60 @@
|
|||
\usepackage{lmodern}
|
||||
\usepackage{latexsym}
|
||||
\usepackage{float}
|
||||
\usepackage{placeins}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{indentfirst}
|
||||
\usepackage{fancyhdr}
|
||||
\usepackage{changepage}
|
||||
\usepackage{enumitem}
|
||||
\usepackage{url}
|
||||
\usepackage{amssymb}
|
||||
\usepackage{subcaption}
|
||||
\DeclareCaptionLabelSeparator{colon}{ : } % to add space before the colon in the figure caption.
|
||||
%\usepackage[dvipsnames, table]{xcolor} %FIXME
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{%
|
||||
colorlinks=true,
|
||||
%linkcolor=NavyBlue,
|
||||
linkcolor=blue, % FIXME
|
||||
filecolor=magenta,
|
||||
urlcolor=blue,
|
||||
citecolor=blue,
|
||||
}
|
||||
|
||||
\usepackage[includeheadfoot, headheight=64pt, margin=1.25in]{geometry}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{fancyhdr}
|
||||
\usepackage{tikz}
|
||||
|
||||
|
||||
%---------------------------------------------------------------------------------
|
||||
% Title header
|
||||
%---------------------------------------------------------------------------------
|
||||
|
||||
\fancypagestyle{title} {%
|
||||
\pagestyle{fancy}
|
||||
\renewcommand{\headrulewidth}{0pt}
|
||||
\renewcommand{\footrulewidth}{0pt}
|
||||
\fancyhf{}
|
||||
\chead{\includegraphics[width=\linewidth]{figs/epita-banner.png}}
|
||||
\rfoot{\thepage}
|
||||
\lfoot{Bruno BELAYI \\ \vspace{-11pt} \hspace{3.1cm} \href{https://www.linkedin.com/in/bruno-belanyi}{\includegraphics[height=0.5cm]{figs/linkedin.png}}}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------------------------------
|
||||
% Header
|
||||
%---------------------------------------------------------------------------------
|
||||
|
||||
\pagestyle{fancy}
|
||||
\renewcommand{\headrulewidth}{0pt}
|
||||
\renewcommand{\footrulewidth}{0pt}
|
||||
\fancyhf{}
|
||||
\chead{
|
||||
\begin{tikzpicture}
|
||||
\draw (0, 0) node[inner sep=0] {\includegraphics[width=\linewidth]{figs/epita-banner.png}};
|
||||
\draw (3, 0) node {\textcolor{white}{\textbf{End of studies internship report - IMAGE}}};
|
||||
\end{tikzpicture}
|
||||
}
|
||||
\rfoot{\thepage}
|
||||
\cfoot{IMV BV - Bruno BELANYI}
|
25
report.md
Normal file
25
report.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Exec Sum
|
||||
|
||||
# Thanks and acknowledgements
|
||||
|
||||
# Introduction
|
||||
|
||||
# Subject
|
||||
|
||||
# Context of the subject
|
||||
|
||||
# Internship roadmap
|
||||
|
||||
# Engineering practices
|
||||
|
||||
# Illustrated analysis of acquired skills
|
||||
|
||||
# Added value
|
||||
|
||||
# Conclusion
|
||||
|
||||
# Appendix
|
||||
|
||||
## About IMC
|
||||
|
||||
## Results & Comments
|
Loading…
Reference in a new issue