diff options
author | bk2dcradle <ankitsultana@gmail.com> | 2016-01-05 13:34:10 +0530 |
---|---|---|
committer | bk2dcradle <ankitsultana@gmail.com> | 2016-01-05 13:34:10 +0530 |
commit | 0e3ed9579b296e276741f06afe8e0a9834672b9e (patch) | |
tree | d01a82820ee8a7fb41583cdbf9119583d3fe8004 /latex.html.markdown | |
parent | a5730e4ab931b8355704d35ee08acef75435bd83 (diff) | |
parent | 4dc5eeda5528047ece4f5798cff6961b0bc21dcb (diff) |
Reset to Adambard's
Diffstat (limited to 'latex.html.markdown')
-rw-r--r-- | latex.html.markdown | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/latex.html.markdown b/latex.html.markdown index 31231a70..2492f226 100644 --- a/latex.html.markdown +++ b/latex.html.markdown @@ -4,6 +4,7 @@ contributors: - ["Chaitanya Krishna Ande", "http://icymist.github.io"] - ["Colton Kohnke", "http://github.com/voltnor"] - ["Sricharan Chiruvolu", "http://sricharan.xyz"] + - ["Ramanan Balakrishnan", "https://github.com/ramananbalakrishnan"] filename: learn-latex.tex --- @@ -227,6 +228,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} ``` |