diff options
| author | Chris Sobczak <chris@sobczak.family> | 2026-08-01 22:33:54 -0700 |
|---|---|---|
| committer | Chris Sobczak <chris@sobczak.family> | 2026-08-01 22:33:54 -0700 |
| commit | 83d70583c1598276d80cbddaea1ea7ff147d6835 (patch) | |
| tree | 35c83720e0d41c8cbdfeda069ed98efe00022de3 /lit-review-template.tex | |
| parent | 93b57a4a91338c7af658c17e026355532ad75925 (diff) | |
Draft tex doc
Diffstat (limited to 'lit-review-template.tex')
| -rw-r--r-- | lit-review-template.tex | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/lit-review-template.tex b/lit-review-template.tex new file mode 100644 index 0000000..e175fab --- /dev/null +++ b/lit-review-template.tex @@ -0,0 +1,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} |
