diff options
author | C. Bess <cbess@company.com> | 2015-11-23 13:06:30 -0600 |
---|---|---|
committer | C. Bess <cbess@company.com> | 2015-11-23 13:06:30 -0600 |
commit | 8ca7f472eccdb116d597a2a8d888c188d797469e (patch) | |
tree | 4d31ab95dc5c435361e10eaa3a18ca9ab8cfd6b1 /latex.html.markdown | |
parent | 99b2c3db3705b5231ca360c9fa69c8319caab69b (diff) | |
parent | 2d67c58d7f4ea457e756e0973bba0c25a499957e (diff) |
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'latex.html.markdown')
-rw-r--r-- | latex.html.markdown | 9 |
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} ``` |