Free LGU Report Template
Author
Guochao Xie
Last Updated
před 4 lety
License
Creative Commons CC BY 4.0
Abstract
A free LGU report template to get start your report much easier.
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{xcolor}
\usepackage{hyperref}
\usepackage{minted}
\include{defs}
\usepackage{lipsum}
%%%%%%%%%%%%%%%
% Title Page
\title{Free \LaTeX\ template for LGU Reports}
\author{GX \newline 120000000 \newline gx@apartsa.com}
\date{\today}
%%%%%%%%%%%%%%%
\begin{document}
\maketitle
\tableofcontents
\clearpage
\section{Introduction}
\textbf{WARNING:} This template is for LGU reports. Please use the logo and icon \textbf{properly}. It is your responsibility to use them \textbf{legally}. If you are using this template outside LGU, please contact the university for its permission or remove them.
The main purpose of this template is a free template to get start your academic reports with one click. Anyone can reproduce this template and create their own styles based on this one, as long as referencing this template. This template is based on \href{https://www.overleaf.com/latex/templates/another-template-for-business-reports/jjqkjjmcptkg}{\textit{Another template for business reports}}.
To contact me, send to my email on the cover page. Welcome any suggestions and requirements! Join our tutorials by emailing me!
\section{Get Started}
\subsection{Sections}
You can insert a new section, subsection, or subsubsection using the commands:
\begin{verbatim}
\section{Section Name}
\subsection{Subsection Name}
\subsubsection{Subsubsection Name}
\end{verbatim}
Note: the table of content will update simultaneously.
\subsection{New Page}
If you want to insert a new page, use the command \begin{verbatim}
\newpage
\end{verbatim}
\subsection{Text formatting}
Two useful text formatting commands are \textbf{BOLD} and \textit{Italics}. \textbf{PS: you can also use CTRL (Command) + B and CTRL (Command) + I in Overleaf.}
\begin{verbatim}
\textbf{BOLD}
\textit{Italics}.
\end{verbatim}
\subsection{Inserting Images}
Examples of inserting a single image or two images in a row:
\begin{figure}[!h]
\centering
\includegraphics[width=0.5\textwidth]{sky.jpg}
\caption{The sky is the limit.}
\end{figure}
\begin{figure}[!h]
\centering
\includegraphics[width=0.5\textwidth]{sky.jpg}
\caption*{The sky is the limit. (No prefix)}
\end{figure}
\begin{figure}[htbp]
\centering
\begin{minipage}[t]{0.48\textwidth}
\centering
\includegraphics[width=\textwidth]{sky.jpg}
\caption{LEFT}
\end{minipage}
\begin{minipage}[t]{0.48\textwidth}
\centering
\includegraphics[width=\textwidth]{sky.jpg}
\caption{RIGHT}
\end{minipage}
\end{figure}
\begin{verbatim}
\begin{figure}[!h]
\centering
\includegraphics[width=0.5\textwidth]{sky.jpg}
\caption{The sky is the limit.}
\end{figure}
\begin{figure}[!h]
\centering
\includegraphics[width=0.5\textwidth]{sky.jpg}
\caption*{The sky is the limit. (No prefix)}
\end{figure}
\begin{figure}[htbp]
\centering
\begin{minipage}[t]{0.48\textwidth}
\centering
\includegraphics[width=\textwidth]{sky.jpg}
\caption{LEFT}
\end{minipage}
\begin{minipage}[t]{0.48\textwidth}
\centering
\includegraphics[width=\textwidth]{sky.jpg}
\caption{RIGHT}
\end{minipage}
\end{figure}
\end{verbatim}
\subsection{Tables}
\begin{table}[!h]
\centering
\caption{Sample table.}
\begin{tabular}{cccc}
\toprule
Value 1 & Value 2 & Value 3 & Value 4\\
\midrule
odd & odd & odd & 1.00 \\
even & even & even& 1.00 \\
odd & odd & odd & 1.00 \\
even & even & even& 1.00 \\
\bottomrule
\end{tabular}
\end{table}
\begin{verbatim}
\begin{table}[!h]
\centering
\caption{Sample table.}
\begin{tabular}{cccc}
\toprule
Value 1 & Value 2 & Value 3 & Value 4\\
\midrule
odd & odd & odd & 1.00 \\
even & even & even& 1.00 \\
odd & odd & odd & 1.00 \\
even & even & even& 1.00 \\
\bottomrule
\end{tabular}
\end{table}
\end{verbatim}
\subsection{Code Hightlighting}
\begin{minted}{C}
int main(int argc, const char* []argv) {
printf("hello world\n");
return 0;
}
\end{minted}
\section{Features commands}
\subsection{Pictures used}
\noindent
Cover picture filename (in titlepage): \texttt{cover}\\
Cover logo filename (in titlepage): \texttt{lgu-logo}\\
Logo filename (in foot): \texttt{logo}
\subsection{Boxes}
\begin{verbatim}
\fullboxbegin
Content
\fullboxend
\end{verbatim}
\begin{verbatim}
\leftboxbegin
Content
\leftboxend
\end{verbatim}
\begin{verbatim}
\rightboxbegin
Content
\rightboxend
\end{verbatim}
\begin{verbatim}
\frameboxbegin{Frame Title}
Content
\frameboxend
\end{verbatim}
\subsection{Colors}
You can define \textbf{color1}, \textbf{color2}, and \textbf{colorcover} in \textit{defs.tex}. \textbf{color1} is used for \textbf{titles}, \textbf{color2} is used for headers and footers, and \textbf{colorcover} is used for the cover.
\newpage
\section{First section}
\lipsum[1]
\fullboxbegin
\lipsum[1]
\fullboxend
\lipsum[1]
\subsection{First subsection}
\lipsum[1]
\leftboxbegin
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque.
\leftboxend
\lipsum[1-2]
\rightboxbegin
\begin{itemize}
\item Lorem ipsum
\item Lorem ipsum
\end{itemize}
\rightboxend
\lipsum[1]
\subsubsection{First subsubsection}
\lipsum[1]
\section*{Unnumbered section}
\lipsum[1]
\frameboxbegin{Sample frame}
\lipsum[1]
\frameboxend
\newpage
\section{Architecture Design}
\lipsum[1]
\section{Experiment and Results}
\lipsum[1]
\section{Conclusion}
\lipsum[1]
\end{document}