-
Notifications
You must be signed in to change notification settings - Fork 1
/
Test.tex
27 lines (23 loc) · 857 Bytes
/
Test.tex
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
\documentclass{article}
\usepackage{lipsum}
\usepackage{filecontents}
\usepackage[backend=biber,style=imperialharvard]{biblatex}
\begin{filecontents}{jobname.bib}
@article{Smith1998,
title = {A human liver cell},
volume = {250},
url = {http://www.somewebsite.com/somewhere/test/993618},
doi = {10.1854/piro.1998.9361},
number = {1},
journaltitle = {Virology},
author = {Smith, J and Doe, J and Bloggs, J},
urldate = {2016-02-01},
date = {1998-10},
pages = {140--50}
}
\end{filecontents}
\bibliography{jobname.bib}
\begin{document}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \autocite{Smith1998}.
\printbibliography
\end{document}