-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmwe.tex
More file actions
30 lines (25 loc) · 683 Bytes
/
mwe.tex
File metadata and controls
30 lines (25 loc) · 683 Bytes
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
\documentclass{article}
\usepackage[finnish]{babel}
\usepackage{url}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{Knu86,
author = {Knuth, Donald E.},
year = {1986},
title = {The \TeX book},
url = {http://www.ctex.org/documents/shredder/src/texbook.pdf},
urldate = {2017-04-17}
}
@misc{jikuja17,
author = {Kujanp{\"a}{\"a}, Janne},
title = {unsrt-fi git-repository},
year = {2017},
url = {https://github.com/jikuja/bib-fi},
urldate = {2017-04-17}
}
\end{filecontents}
\begin{document}
This works, yeah! \cite{Knu86} Homepage\cite{jikuja17}.
\bibliographystyle{unsrt-fi}
\bibliography{\jobname}
\end{document}