summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex')
-rw-r--r--Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex72
1 files changed, 72 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex
new file mode 100644
index 00000000000..c071bf5e52e
--- /dev/null
+++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex
@@ -0,0 +1,72 @@
+%#!pdflatex
+%#BIBTEX bibtex econ-numbers
+
+%############################## Main #################################
+\documentclass[10pt]{article}
+
+%% Use natbib.sty
+\usepackage[numbers]{natbib}
+\usepackage{mathpazo}
+\usepackage{url}
+\usepackage{graphicx}
+\usepackage{color}
+\definecolor{MyBrown}{rgb}{0.3,0,0}
+\definecolor{MyBlue}{rgb}{0,0,0.3}
+\definecolor{MyRed}{rgb}{0.4,0,0.1}
+\definecolor{MyGreen}{rgb}{0,0.4,0}
+\usepackage[bookmarks=true,%
+bookmarksnumbered=true,%
+colorlinks=true,%
+linkcolor=MyBlue,%
+citecolor=MyRed,%
+filecolor=MyBlue,%
+urlcolor=MyGreen%
+]{hyperref}
+
+\setlength{\topmargin}{-20pt}
+\setlength{\textheight}{648pt}
+\setlength{\oddsidemargin}{15pt}
+\setlength{\textwidth}{440pt}
+
+% Redefine \cicet command so that citet is equal to citep.
+\renewcommand{\citet}[1]{\citep{#1}}
+
+%#####################################################################
+%######################### Document Starts ###########################
+%#####################################################################
+\begin{document}
+
+In this document, we use numerical mode of \texttt{natbib.sty}. That is, we cite
+references by number index.
+\vspace*{1em}
+
+To use numerical mode of \texttt{natbib.sty}, we use the following setting.
+\begin{itemize}
+ \item Load \texttt{natbib.sty} with option ``\texttt{numbers}'' like \\
+ \verb|\usepackage[numbers]{natbib}|
+ \item Use ``\verb|econ-no-sort.bst|'' which means that entries in the reference
+ are listed in citation order (not alphabetical order).
+ \item Use \verb|\citep| command instead of \verb|\citet| command.\\ Note:
+ strictly speaking, we use \texttt{citet} command but redefine
+ \texttt{citet} command in the preample so that it is equal to
+ \texttt{citep}.
+\end{itemize}
+
+\vspace{1em}
+
+\input{cited-part}
+\nocite{*}
+
+%% bst file:
+\bibliographystyle{econ-no-sort}
+\bibliography{../econ-example}
+
+\end{document}
+
+%#####################################################################
+%######################### Document Ends #############################
+%#####################################################################
+% --------------------
+% Local Variables:
+% fill-column: 80
+% End: