Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the use of acronyms and automatic list of acronyms. #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions report.tex
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
\usepackage{algpseudocode}
\usepackage{siunitx}
\usepackage[framemethod=TikZ]{mdframed}
\usepackage[acronym,automake]{glossaries-extra}

\setabbreviationstyle[acronym]{long-short}
\subfile{subfiles/acronyms}
\makeglossaries{}


\mdfdefinestyle{frameStyle}{%
roundcorner=5pt,
Expand Down Expand Up @@ -76,6 +82,7 @@

\bibliographystyle{IEEEtran}
\bibliography{references}
\printglossary[type=\acronymtype]

\subfile{subfiles/acknowledgement}
\subfile{subfiles/statement_of_originality}
Expand Down
2 changes: 2 additions & 0 deletions subfiles/acronyms.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
% example of how to set an acronym that you will call using \Gls{rnd}, \Glspl{rnd}, \gls{rnd}, \glspl{rnd}
\newacronym{rnd}{R\&D}{research and development}
2 changes: 1 addition & 1 deletion subfiles/introduction.tex
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
\section{Introduction}
\label{sec:introduction}

This is a template for MAS R\&D projects, based on \emph{IEEETran}.
This is a template for MAS \gls{rnd} projects, based on \emph{IEEETran}.
Here are some preliminaries about some common things you need to do to use the template:
\begin{itemize}
\item Add your references to the file \emph{references.bib} and cite them as Mustermann and Smith \cite{referenceexample} (if there are more than three authors, cite as Mustermann et al. \cite{referenceexample}).
Expand Down