add internship report template

This commit is contained in:
2025-04-03 15:46:17 +02:00
parent e65d2a85a9
commit c93e176fac
17 changed files with 602 additions and 0 deletions

View File

@@ -0,0 +1,124 @@
\documentclass[a4paper,twoside,11pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\input{packages.tex}
\headertext{My Internship report}
\footertext{My beautiful Name}
\begin{document}
\begin{titlepage}
\begin{center}
{\large $2^{nd}$ Year's Master, laboratory internship}\\[0.5cm]
% Title
\rule{\linewidth}{0.5mm} \\[0.3cm]
{ \huge \bfseries Title of your Internship report \\[0.3cm] }
\rule{\linewidth}{0.5mm} \\[0.4cm]
Internship from begin to end date\\[0.5cm]
% Author and supervisor
\noindent
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Intern:}\\
M. Firstname \textsc{Lastname}\\
\end{flushleft}
\end{minipage}%
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\emph{Director:} \\
Dr.~Firstname \textsc{Lastname}
\end{flushright}
\end{minipage}\\[0.5cm]
\begin{figure}[!ht]
\centering\includegraphics[width=\textwidth]{example-image-a}
\caption*{\small Caption for the cover art.}
\end{figure}
\vfill
\begin{figure}[!ht]
\centering
\includegraphics[height=1.8cm]{./Images/logo_Unistra.pdf}
\hspace{1cm}
\includegraphics[height=1.8cm]{./Images/logo_ObAs.pdf}
\end{figure}
\vfill
% Bottom of the page
{\large \today}
\end{center}
\end{titlepage}
%%%%%%%%%%%%%%%%%%%%%%%%
%%% Acknowledgements %%%
%%%%%%%%%%%%%%%%%%%%%%%%
\chapter*{Acknowledgements}
\indent\input{./Pages/Acknowledgements}
\chapter*{Remerciements}
\indent\input{./Pages/Remerciements}
%%%%%%%%%%%%%%%%
%%% Abstract %%%
%%%%%%%%%%%%%%%%
\newpage
\thispagestyle{plain}
\vspace*{\fill}
\noindent\rule[2pt]{\textwidth}{0.5pt}\\
{\textbf{R\'esum\'e\\}}
\input{./Pages/Resume}\\
\noindent\rule[2pt]{\textwidth}{0.5pt}
\noindent\rule[2pt]{\textwidth}{0.5pt}\\
{\textbf{Abstract\\}}
\input{./Pages/Abstract}\\
\noindent\rule[2pt]{\textwidth}{0.5pt}
\vspace*{\fill}
\newpage
\tableofcontents
\newpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Content of the report %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\phantomsection
\addcontentsline{toc}{chapter}{Introduction}
\chapter*{Introduction}
\input{./Pages/ch-Introduction}
\chapter{First chapter}
\input{./Pages/ch-Chapter1}
\chapter{Second chapter}
\input{./Pages/ch-Chapter2}
\chapter{Third chapter}
\input{./Pages/ch-Chapter3}
\phantomsection
\addcontentsline{toc}{chapter}{Conclusion}
\chapter*{Conclusion}
\input{./Pages/ch-Conclusion}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% References and Appendix %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\phantomsection
\renewcommand{\bibname}{References}
\addcontentsline{toc}{chapter}{References}
\markboth{References}{References}
\printbibliography
\newpage
\phantomsection
\addcontentsline{toc}{chapter}{Appendix}
\markboth{Appendix}{Appendix}
\chapter*{Appendix}
\input{./Pages/Appendix}
\end{document}