Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hegde-atri/uos-org-report

Org mode template for LaTeX report for the University of Sheffield
https://github.com/hegde-atri/uos-org-report

latex org-mode

Last synced: 6 days ago
JSON representation

Org mode template for LaTeX report for the University of Sheffield

Awesome Lists containing this project

README

        

#+TITLE: TITLE OF YOUR REPORT
#+SUBTITLE: Report Description
#+AUTHOR: Atri Hegde
#+OPTIONS: title:nil toc:nil H:3
#+SETUPFILE: ~/.config/doom/latex-templates/uos-report.org

#+LATEX: \begin{titlepage}
#+LATEX: \begin{center}
#+LATEX: \includegraphics[width=5cm]{assets/uos_logo.png}\\[2cm]
#+LATEX: \linespread{1.2}\huge {\bfseries Project Title}\\[2cm]
#+LATEX: \linespread{1}
#+LATEX: {\Large Your name}\\[1cm]
#+LATEX: {\large \emph{Supervisor:} Supervisor name}\\[1cm]
#+LATEX: \large \emph{A report submitted in fulfilment of the requirements}\\ \emph{for the degree of MEng Software Engineering}\\[0.3cm] \textit{in the}\\[0.3cm] School of Computer Science\\[2cm]
#+LATEX: \today
#+LATEX: \end{center}
#+LATEX: \end{titlepage}

#+LATEX_HEADER: \fancyhead[C]{\textit{\leftmark}}
#+LATEX_HEADER: \fancyfoot[C]{\thepage}

#+LATEX_HEADER: \usepackage[backend=biber,style=ieee,sorting=none,defernumbers=false]{biblatex}
#+LATEX_HEADER: \addbibresource{ref.bib}
#+BIBLIOGRAPHY: ref.bib

#+LATEX: % -------------------------------------------------------------------
#+LATEX: % Declaration
#+LATEX: % ---------------------------------------------------------

#+LATEX: \chapter*{\Large Declaration}

All sentences or passages quoted in this report from other people's work have been specifically acknowledged by clear cross-referencing to author, work and page(s). Any illustrations that are not the work of the author of this report have been used with the explicit permission of the originator and are specifically acknowledged. I understand that failure to do this amounts to plagiarism and will be considered grounds for failure in this project and the degree examination as a whole.

#+LATEX: \noindent Name: John Smith \\[1mm]
#+LATEX: \rule[1em]{25em}{0.5pt}

#+LATEX: \noindent Signature:\\[1mm]
#+LATEX: \rule[1em]{25em}{0.5pt}

#+LATEX: \noindent Date: \today \\[1mm]
#+LATEX: \rule[1em]{25em}{0.5pt}

#+LATEX: % -------------------------------------------------------------------

#+LATEX: % -------------------------------------------------------------------
#+LATEX: % Abstract
#+LATEX: % ---------------------------------------------------------
#+LATEX: \chapter*{\Large \center Abstract}
#+INCLUDE: "./chapters/abstract.org"
#+LATEX: % -------------------------------------------------------------------

#+LATEX: % -------------------------------------------------------------------
#+LATEX: % TOC etc
#+LATEX: % -------------------------------------------------------------------

#+LATEX: \tableofcontents
#+LATEX: \listoffigures
#+LATEX: \listoftables

* Introduction
#+INCLUDE: "./chapters/introduction.org"

* Example Heading
Testing [cite:@example_citation]

#+LATEX: % -------------------------------------------------------------------
#+LATEX: % BIBLIOGRAPHY
#+LATEX: % -------------------------------------------------------------------
#+LATEX: \newpage
#+LATEX: \printbibliography[heading=bibintoc]
#+CITE_EXPORT: biblatex numeric

#+LATEX: % -------------------------------------------------------------------
#+LATEX: % Appendices
#+LATEX: % -------------------------------------------------------------------
#+LATEX: \begin{appendices}
* Appendix Name
:PROPERTIES:
:CUSTOM_ID: appendix:appendix-name
:END:
#+INCLUDE: "./appendices/appendixA.org"
#+LATEX: \end{appendices}