Latex: Difference between revisions

478 bytes added ,  22 January 2020
Line 127: Line 127:
How to do references in Latex.<br>
How to do references in Latex.<br>
[https://www.verbosus.com/bibtex-style-examples.html Bibtex Examples]
[https://www.verbosus.com/bibtex-style-examples.html Bibtex Examples]
===Citations===
Use <code>\cite</code> or some variant to cite references.<br>
[https://gking.harvard.edu/files/natnotes2.pdf Natbib reference sheet]<br>
<pre>
# Defaults to author-year citations
\usepackage{natbib}
# For numerical citations
\usepackage[numbers]{natbib}
#...
# If using author-year citations
\citet{jon90} ⇒ Jones et al. (1990)
\citep{jon90} ⇒ (Jones et al., 1990)
\citep[see][]{jon90} ⇒ (see Jones et al., 1990)
# If using numerical citations
</pre>


===Case of Titles===
===Case of Titles===