summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/bibtex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-01-10 22:32:56 +0000
committerKarl Berry <karl@freefriends.org>2007-01-10 22:32:56 +0000
commite3d51aa2578ac5632c8271c357540511411ff0a2 (patch)
tree0473edf7a9d2f0c1290755f365db4002b13bb2f5 /Master/texmf-dist/doc/bibtex
parent3b74459d2df5406223af0ab9431433d3de67e5ef (diff)
economic update
git-svn-id: svn://tug.org/texlive/trunk@3312 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/bibtex')
-rw-r--r--Master/texmf-dist/doc/bibtex/economic/README17
-rw-r--r--Master/texmf-dist/doc/bibtex/economic/aer-natbib.tex45
2 files changed, 57 insertions, 5 deletions
diff --git a/Master/texmf-dist/doc/bibtex/economic/README b/Master/texmf-dist/doc/bibtex/economic/README
index c1ce19a6c9c..83de0145ce0 100644
--- a/Master/texmf-dist/doc/bibtex/economic/README
+++ b/Master/texmf-dist/doc/bibtex/economic/README
@@ -18,7 +18,12 @@ erae-test.tex, erae-test.bib: LaTeX and BibTeX file for testing
author: Arne Henningsen <ahenningsen (at) email.uni-kiel.de>
license: LPPL
-3) American Economic Review
+3) International Economic Review
+ier.bst: BibTeX style
+author: Doug McKee <dmckee (at) ucla.edu>
+license: LPPL
+
+4) American Economic Review
aer.bst: BibTeX style. It requires the associated style files
aer.sty and harvard.sty
aertt.bst: This reproduces the incredibly crazy way the
@@ -26,13 +31,15 @@ aertt.bst: This reproduces the incredibly crazy way the
associated style files aertt.sty and harvard.sty as well as
the LaTeX package ulem.sty (CTAN:macros/latex/contrib/misc/)
author: Peter Williams <peterw (at) archsci.arch.su.oz.au>
+aer-natbib.tex: LaTeX file for testing aer.bst with the natbib package
+author: Arne Henningsen <ahenningsen (at) email.uni-kiel.de>
-4) Canadian Journal of Economics
+5) Canadian Journal of Economics
cje.bst: BibTeX style. It requires the associated style files
cje.sty and harvard.sty
author: Peter Williams <peterw (at) archsci.arch.su.oz.au>
-5) Econometrica
+6) Econometrica
ecta.bst: BibTeX style. It requires the LaTeX style ``natbib'' (or ``chicago'')
author: Sebastian Perez-Duarte <perez (at) ensae.fr>
OR
@@ -44,12 +51,12 @@ econometrica-fr.bst: BibTeX style. It requires the associated style file
harvard.sty
author: Guillaume Horny <horny (at) cournot.u-strasbg.fr>
-6) ????
+7) ????
agsm.bst: BibTeX style
harvard.tex, harvard.bib: LaTeX and BibTeX file for testing
author: Peter Williams <peterw (at) archsci.arch.su.oz.au>
-7) Testing aer, aertt, and cje
+8) Testing aer, aertt, and cje
wigle.tex, wigle.bib: LaTeX and BibTeX file for testing the styles files
aer.bst, aer.sty, aertt.bst, aertt.sty, cje.bst, and cje.sty
author: Randall M. Wigle <rwigle (at) wlu.ca> and
diff --git a/Master/texmf-dist/doc/bibtex/economic/aer-natbib.tex b/Master/texmf-dist/doc/bibtex/economic/aer-natbib.tex
new file mode 100644
index 00000000000..48a0171fa53
--- /dev/null
+++ b/Master/texmf-dist/doc/bibtex/economic/aer-natbib.tex
@@ -0,0 +1,45 @@
+\documentclass{scrartcl}
+\usepackage[T1]{fontenc}
+\usepackage[latin1]{inputenc}
+\usepackage{lmodern}
+
+\usepackage{natbib}
+
+\usepackage{hyperref}
+\hypersetup{%
+ colorlinks = {true},
+ urlcolor = {blue},
+ linkcolor = {black},
+ citecolor = {black},
+ pdfauthor = {Arne Henningsen},
+ pdftitle = {Testing BibTeX style for the
+ American Economic Review (AER)},
+ pdfkeywords = {AER, BibTeX, LaTeX}
+}
+
+\title{Testing Bib\TeX{} style for the
+ ``American Economic Review'' (AER)}
+\author{Arne Henningsen}
+
+\begin{document}
+
+\maketitle
+
+\section{Citations}
+\subsection{Citations in Text}
+\citet{Black29} says A, \citet{Wold89} say B, \citet{Wold} say C,
+\citet{Wold4} say D, \citet{Wold5} say E., \citet{Brown65} says F,
+and the \citet{USDA65} says G.
+
+\subsection{Citations in Parenthesis}
+A equals B \citep{Black29}, B equals C \citep{Wold89}, C equals D \citep{Wold},
+D equals E \citep{Wold4}, E equals F \citep{Wold5}, F equals G \citep{Brown65},
+and G equals A \citep{USDA65}.
+Hence, A, B, C, D, E, F, and G are all equal
+\citep{Black29, Wold89, Wold, Wold4, Wold5, Brown65, USDA65}.
+
+\nocite{*}
+\bibliographystyle{aer}
+\bibliography{ajae-test}
+
+\end{document}