blob: e175fab4dc63d55b4e244e8d69dc2fba4e6aee79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
\documentclass[11pt]{article}
\usepackage{float}
\usepackage{multicol}
\usepackage{etoolbox}
\usepackage{xcolor}
\usepackage[
colorlinks=true,
linkcolor=purple,
urlcolor=blue,
citecolor=red
]{hyperref}
\usepackage[toc,acronym,automake]{glossaries}
\makeglossaries
% Bibliography
\usepackage[
backend=biber,
style=authoryear
]{biblatex}
\addbibresource{references.bib}
\title{TITLE}
\author{AUTHOR}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\newpage
\section{Topic one}
\subsection{Paper one \cite{Shin_2014}}
\newglossaryentry{mr}{
name={Mendelian randomization},
description={Using genetic variants as instruments to infer causal effects}
}
\newacronym{gdm}{GDM}{Genetically Determined Metabotype}
Here is an example of learning new vocabulary such as \gls{mr} and defining it in the glossary.
\subsection{Short title of paper \cite{Suhre_2011}}
\section{Topic two}
\newpage
% Add youtube channels and database links here
\section{Online resources}
\begin{itemize}
\item \href{https://www.hmdb.ca/}{Human Metabolome Database}
\end{itemize}
\newpage
% Automatically generated glossary and acronyms
\printglossaries
\newpage
\printbibliography
\end{document}
|