Skip to content

Instantly share code, notes, and snippets.

@gghatano
Created May 30, 2014 10:10
Show Gist options
  • Save gghatano/350f58c2292de8e76ab6 to your computer and use it in GitHub Desktop.
Save gghatano/350f58c2292de8e76ab6 to your computer and use it in GitHub Desktop.
texのnatbibで, (hoge et al, 2030)みたいな引用
\documentclass{article}
\usepackage[round]{natbib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article {Schimd1993,
author = {Schmid, Hans-Peter and McNeal, John E. and Stamey, Thomas A.},
title = {Observations on the doubling time of prostate cancer. The use of serial prostate-specific antigen in patients with untreated disease as a measure of increasing cancer volume},
journal = {Cancer},
volume = {71},
number = {6},
publisher = {Wiley Subscription Services, Inc., A Wiley Company},
issn = {1097-0142},
pages = {2031--2040},
keywords = {prostate cancer, serial prostate-specific antigen, doubling time, growth pattern},
year = {1993},
}
\end{filecontents}
\begin{document}
hoge \citep{Schimd1993}
\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment