diff options
author | ven <vendethiel@hotmail.fr> | 2015-11-10 09:12:07 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-11-10 09:12:07 +0100 |
commit | ae654256e52c842eb396f670245d12e773bcace6 (patch) | |
tree | 1dcbe6d1eb5ce11626650e9ea6b313689896a9c1 /latex.html.markdown | |
parent | c460e1fafa0e9b4edc6a5cb35b970bb5cc030a81 (diff) | |
parent | 70b3fa5bb6410b1c50e549a76807fd509119dd85 (diff) |
Merge pull request #1995 from ramananbalakrishnan/master
[latex/en] Explain how to setup a bibliography section
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} ``` |