summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRamanan Balakrishnan <ramanan90@gmail.com>2015-10-31 23:35:20 -0700
committerRamanan Balakrishnan <ramanan90@gmail.com>2015-10-31 23:35:20 -0700
commitecdd217522a1f1b70dd1abca720e36f24622db6d (patch)
treed94916a46968885a0e4c8e161f60806478d195b7
parent463cec82d08a58c6452b5b2beec5ee3b99e33ba6 (diff)
[latex/en] Explain how to setup a bibliography section
-rw-r--r--latex.html.markdown9
1 files changed, 9 insertions, 0 deletions
diff --git a/latex.html.markdown b/latex.html.markdown
index 31231a70..e89d7e3b 100644
--- a/latex.html.markdown
+++ b/latex.html.markdown
@@ -227,6 +227,15 @@ format you defined in Step 1.
That's all for now!
+% Most often, you would want to have a references section in your document.
+% The easiest way to set this up would be by using the bibliography section
+\begin{thebibliography}{1}
+ % similar to other lists, the \bibitem command can be used to list items
+ % each entry can then be cited directly in the body of the text
+ \bibitem{latexwiki} The amazing LaTeX wikibook: {\em https://en.wikibooks.org/wiki/LaTeX}
+ \bibitem{latextutorial} An actual tutorial: {\em http://www.latex-tutorial.com}
+\end{thebibliography}
+
% end the document
\end{document}
```