% ------------------------------------------
% MASA FORMAL TECHNICAL REPORT TEMPLATE
% - Last updated by Theo Rulko, 12/25/2021
% - Conforms to AE305/405 TechComm Standards
% ------------------------------------------
% Preamble
\newcommand{\mytitle}{MASA Technical Report Template (replace with your title here)}
\newcommand{\myauthors}{Andrei Tupolev, Burt Rutan, Kelly Johnson, Robert Goddard, Theodore von Karman, Wernher von Braun}
\newcommand{\mydate}{December 25, 2021}
\input{assets/MASAfrontmatter.tex}
\begin{document}
% ------------------------------------------
% LETTER
% ------------------------------------------
% MASA Letterhead
\MASALetterhead
{2603 Draper Dr.\\Ann Arbor, MI 48109\\(555) 555-5555} % From
{Sergei Korolev, Chief Engineer\\Michigan Aeronautical Science Association (MASA)\\2603 Draper Dr.\\Ann Arbor, MI 48109} % To
{Some subject goes here} % Subject
% Letter Body
Dear Mr. Korolev:
\lipsum[2-4]
Andrei Tupolev, Burt Rutan, Kelly Johnson, Robert Goddard, Theodore von Karman, Wernher von Braun
% Signatures
\begin{flushright}
\begin{tabularx}{0.5\textwidth}{l l @{}}
Sincerely, & \\
\signature{4}{Andrei Tupolev} & \signature{3.2}{Burt Rutan}\\
\signature{4}{Kelly Johnson} & \signature{3.2}{Robert Goddard}\\
\signature{4}{Theodore von Karman} & \signature{3.2}{Wernher von Braun}
\end{tabularx}
\end{flushright}
enc.
\hfuzz=0pt
% ------------------------------------------
% TITLE PAGE, COVER PAGE, ACKNOWLEDGEMENTS, TABLES
% ------------------------------------------
% Cover and title pages
\makeCoverPage
\makeTitlePage{Sergei Korolev, Chief Engineer (MASA)} % (Prepared for)
% Acknowledgements page
\MASAacknowledgements{
\lipsum[3]\vspace{5mm}\\
This project was supported by funding provided by MASA at the University of Michigan, Ann Arbor.
}
\ClearWallPaper % (Removes letter/cover footer graphic from subsequent pages)
\pagenumbering{roman}
% Tables of contents, figures, tables
\newpage
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
% ------------------------------------------
% REPORT BODY
% ------------------------------------------
\newpage \pagenumbering{arabic} \setcounter{page}{1}
\section{Executive Summary}
\lipsum[1-5]
% -----------------------------------------
\newpage
\section{Major section example}
\lipsum[2-3]
\begin{figure}[h]
\centering
\includegraphics[width=0.6\textwidth]{figures/intro.pdf}
\captionsetup{justification=centering}
\caption{Example figure. Make sure to generate figures as .pdf files for the best quality.}
\label{fig:intro}
\end{figure}
\subsection{Subsection example}
This is an example subsection; Figure \ref{fig:intro} is an example figure. And here is an example reference to NASA SP-8112 \cite{SP8112}, in AIAA format.
\subsubsection{Subsubsection 1}
\lipsum[1]
\subsubsection{Subsubsection 2}
\lipsum[2]
% ------------------------------------------
% BIBLIOGRAPHY
% ------------------------------------------
\newpage
\bibliography{references}
% ------------------------------------------
% APPENDICES & ATTACHMENTS
% ------------------------------------------
\newpage
\section{Documentation}
The following section presents supporting documentation for the conclusions presented in the body of this report.
\renewcommand{\thesubsection}{\Alph{subsection}}
\subsection{Example Appendix}
\label{appendix:NozzleDrawing}
The reference drawing for the thruster's nozzle is shown in Figure \ref{fig:NozzleDrawing}. The dimensions are intentionally oversized compared to the desired values to allow for manufacturing deviations in the 3D printing process.
\begin{figure}[H]
\centering
\captionsetup{justification=centering}
\includegraphics[width=0.95\textwidth]{figures/3DPrintedNozzle_V4a_MASTER.pdf}
\caption{Reference drawing for dimensions of the 3D-printed nozzle.}
\label{fig:NozzleDrawing}
\end{figure}
\end{document}