├── econ-example.pdf ├── customization ├── econ-a.pdf ├── econ-aea.pdf ├── econ-b.pdf ├── econ-jet.pdf ├── econ-jie.pdf ├── econ-jpe.pdf ├── econ-te.pdf ├── econ-abbr.pdf ├── econ-default.pdf ├── econ-no-sort.pdf ├── econ-numbers.pdf ├── journal_name.xlsx ├── econ-econometrica.pdf ├── econ-many-authors.pdf ├── MEMO.md ├── econ-a.tex ├── econ-b.tex ├── econ-default.tex ├── econ-old.tex ├── econ-jpe.tex ├── econ-jie.tex ├── econ-econometrica.tex ├── econ-jet.tex ├── econ-abbr.tex ├── econ-no-sort.tex ├── econ-aea.tex ├── econ-te.tex ├── econ-numbers.tex ├── cited-part.tex ├── README.md └── econ-many-authors.tex ├── README.md ├── CHANGES.md ├── econ-example.tex └── econ-example.bib /econ-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/econ-example.pdf -------------------------------------------------------------------------------- /customization/econ-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-a.pdf -------------------------------------------------------------------------------- /customization/econ-aea.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-aea.pdf -------------------------------------------------------------------------------- /customization/econ-b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-b.pdf -------------------------------------------------------------------------------- /customization/econ-jet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-jet.pdf -------------------------------------------------------------------------------- /customization/econ-jie.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-jie.pdf -------------------------------------------------------------------------------- /customization/econ-jpe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-jpe.pdf -------------------------------------------------------------------------------- /customization/econ-te.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-te.pdf -------------------------------------------------------------------------------- /customization/econ-abbr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-abbr.pdf -------------------------------------------------------------------------------- /customization/econ-default.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-default.pdf -------------------------------------------------------------------------------- /customization/econ-no-sort.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-no-sort.pdf -------------------------------------------------------------------------------- /customization/econ-numbers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-numbers.pdf -------------------------------------------------------------------------------- /customization/journal_name.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/journal_name.xlsx -------------------------------------------------------------------------------- /customization/econ-econometrica.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-econometrica.pdf -------------------------------------------------------------------------------- /customization/econ-many-authors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShiroTakeda/econ-bst/HEAD/customization/econ-many-authors.pdf -------------------------------------------------------------------------------- /customization/MEMO.md: -------------------------------------------------------------------------------- 1 | 7 | 8 | # Memo by Takeda 9 | 10 | ## customization についての memo 11 | 12 | 以下の 3 つは econ.bst とは一部コードを変更している。 13 | 14 | + econ-econometrica.bst 15 | + econ-jpe.bst 16 | + econ-aea.bst 17 | 18 | 19 | 20 | 21 | 22 | 30 | -------------------------------------------------------------------------------- /customization/econ-a.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-a 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | %##################################################################### 32 | %######################### Document Starts ########################### 33 | %##################################################################### 34 | \begin{document} 35 | 36 | This document uses ``\verb|econ-a.bst|''. 37 | 38 | \vspace{1em} 39 | 40 | \input{cited-part} 41 | \nocite{*} 42 | 43 | %% bst file: 44 | \bibliographystyle{econ-a} 45 | \bibliography{../econ-example} 46 | 47 | \end{document} 48 | 49 | %##################################################################### 50 | %######################### Document Ends ############################# 51 | %##################################################################### 52 | % -------------------- 53 | % Local Variables: 54 | % fill-column: 80 55 | % coding: utf-8 56 | % End: 57 | -------------------------------------------------------------------------------- /customization/econ-b.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-b 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | %##################################################################### 32 | %######################### Document Starts ########################### 33 | %##################################################################### 34 | \begin{document} 35 | 36 | This document uses ``\verb|econ-b.bst|''. 37 | 38 | \vspace{1em} 39 | 40 | \input{cited-part} 41 | \nocite{*} 42 | 43 | %% bst file: 44 | \bibliographystyle{econ-b} 45 | \bibliography{../econ-example} 46 | 47 | \end{document} 48 | 49 | %##################################################################### 50 | %######################### Document Ends ############################# 51 | %##################################################################### 52 | % -------------------- 53 | % Local Variables: 54 | % fill-column: 80 55 | % coding: utf-8 56 | % End: 57 | -------------------------------------------------------------------------------- /customization/econ-default.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-default 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage[longnamesfirst]{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | pagecolor=MyBlue,% 24 | urlcolor=MyGreen% 25 | ]{hyperref} 26 | 27 | \setlength{\topmargin}{-20pt} 28 | \setlength{\textheight}{648pt} 29 | \setlength{\oddsidemargin}{15pt} 30 | \setlength{\textwidth}{440pt} 31 | 32 | %##################################################################### 33 | %######################### Document Starts ########################### 34 | %##################################################################### 35 | \begin{document} 36 | 37 | This document uses ``\verb|econ.bst|''. 38 | 39 | \vspace{1em} 40 | 41 | \input{cited-part} 42 | \nocite{*} 43 | 44 | %% bst file: 45 | \bibliographystyle{../econ} 46 | \bibliography{../econ-example} 47 | 48 | 49 | \end{document} 50 | 51 | 52 | %##################################################################### 53 | %######################### Document Ends ############################# 54 | %##################################################################### 55 | % -------------------- 56 | % Local Variables: 57 | % fill-column: 80 58 | % coding: utf-8 59 | % End: 60 | -------------------------------------------------------------------------------- /customization/econ-old.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-old 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage[longnamesfirst]{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | pagecolor=MyBlue,% 24 | urlcolor=MyGreen% 25 | ]{hyperref} 26 | 27 | \setlength{\topmargin}{-20pt} 28 | \setlength{\textheight}{648pt} 29 | \setlength{\oddsidemargin}{15pt} 30 | \setlength{\textwidth}{440pt} 31 | 32 | %##################################################################### 33 | %######################### Document Starts ########################### 34 | %##################################################################### 35 | \begin{document} 36 | 37 | This document uses ``\verb|econ-old.bst|''. 38 | 39 | \vspace{1em} 40 | 41 | \input{cited-part} 42 | \nocite{*} 43 | 44 | %% bst file: 45 | \bibliographystyle{./econ-old} 46 | \bibliography{../econ-example} 47 | 48 | 49 | \end{document} 50 | 51 | 52 | %##################################################################### 53 | %######################### Document Ends ############################# 54 | %##################################################################### 55 | % -------------------- 56 | % Local Variables: 57 | % fill-column: 80 58 | % coding: utf-8 59 | % End: 60 | -------------------------------------------------------------------------------- /customization/econ-jpe.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-jpe 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | %##################################################################### 32 | %######################### Document Starts ########################### 33 | %##################################################################### 34 | \begin{document} 35 | 36 | This document uses ``\verb|econ-jpe.bst|''. The style like {\itshape Journal of 37 | Polictical Economy}. 38 | 39 | \vspace{1em} 40 | 41 | \input{cited-part} 42 | \nocite{*} 43 | 44 | %% bst file: 45 | \bibliographystyle{econ-jpe} 46 | \bibliography{../econ-example} 47 | 48 | \end{document} 49 | 50 | %##################################################################### 51 | %######################### Document Ends ############################# 52 | %##################################################################### 53 | % -------------------- 54 | % Local Variables: 55 | % fill-column: 80 56 | % coding: utf-8 57 | % End: 58 | -------------------------------------------------------------------------------- /customization/econ-jie.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-jie 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | %##################################################################### 32 | %######################### Document Starts ########################### 33 | %##################################################################### 34 | \begin{document} 35 | 36 | This document uses ``\verb|econ-jie.bst|''. The style like ({\itshape Journal of 37 | International Economics}). 38 | 39 | \vspace{1em} 40 | 41 | \input{cited-part} 42 | \nocite{*} 43 | 44 | %% bst file: 45 | \bibliographystyle{econ-jie} 46 | \bibliography{../econ-example} 47 | 48 | \end{document} 49 | 50 | %##################################################################### 51 | %######################### Document Ends ############################# 52 | %##################################################################### 53 | % -------------------- 54 | % Local Variables: 55 | % fill-column: 80 56 | % coding: utf-8 57 | % End: 58 | -------------------------------------------------------------------------------- /customization/econ-econometrica.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-econometrica 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | %##################################################################### 32 | %######################### Document Starts ########################### 33 | %##################################################################### 34 | \begin{document} 35 | 36 | This document uses ``\verb|econ-econometrica.bst|''. The style like {\itshape Econometrica}. 37 | 38 | \vspace{1em} 39 | 40 | \input{cited-part} 41 | \nocite{*} 42 | 43 | %% bst file: 44 | \bibliographystyle{econ-econometrica} 45 | \bibliography{../econ-example} 46 | 47 | \end{document} 48 | 49 | %##################################################################### 50 | %######################### Document Ends ############################# 51 | %##################################################################### 52 | % -------------------- 53 | % Local Variables: 54 | % fill-column: 80 55 | % coding: utf-8 56 | % End: 57 | -------------------------------------------------------------------------------- /customization/econ-jet.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-jet 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | %##################################################################### 32 | %######################### Document Starts ########################### 33 | %##################################################################### 34 | \begin{document} 35 | 36 | This document uses ``\verb|econ-jet.bst|'', which is the style for \textit{``Journal of 37 | Economic Theory (JET)''}. 38 | 39 | \vspace{1em} 40 | 41 | \input{cited-part} 42 | \nocite{*} 43 | 44 | %% bst file: 45 | \bibliographystyle{econ-jet} 46 | \bibliography{../econ-example} 47 | 48 | \end{document} 49 | 50 | %##################################################################### 51 | %######################### Document Ends ############################# 52 | %##################################################################### 53 | % -------------------- 54 | % Local Variables: 55 | % fill-column: 80 56 | % coding: utf-8 57 | % End: 58 | -------------------------------------------------------------------------------- /customization/econ-abbr.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-abbr 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | %##################################################################### 32 | %######################### Document Starts ########################### 33 | %##################################################################### 34 | \begin{document} 35 | 36 | This document uses ``\verb|econ-abbr.bst|'', which uses abbreviated journal 37 | names such as ``\textit{Am. Econ. Rev.}'' for ``\textit{American Economic Review}''. 38 | 39 | \vspace{1em} 40 | 41 | \input{cited-part} 42 | \nocite{*} 43 | 44 | %% bst file: 45 | \bibliographystyle{econ-abbr} 46 | \bibliography{../econ-example} 47 | 48 | \end{document} 49 | 50 | %##################################################################### 51 | %######################### Document Ends ############################# 52 | %##################################################################### 53 | % -------------------- 54 | % Local Variables: 55 | % fill-column: 80 56 | % coding: utf-8 57 | % End: 58 | -------------------------------------------------------------------------------- /customization/econ-no-sort.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-no-sort 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | %##################################################################### 32 | %######################### Document Starts ########################### 33 | %##################################################################### 34 | \begin{document} 35 | 36 | This document uses ``\verb|econ-no-sort.bst|''. 37 | 38 | \vspace{1em} 39 | Entries in bibliography are listed in citation order (not in 40 | alphabetical order). 41 | \vspace{1em} 42 | 43 | \input{cited-part} 44 | \nocite{*} 45 | 46 | %% bst file: 47 | \bibliographystyle{econ-no-sort} 48 | \bibliography{../econ-example} 49 | 50 | \end{document} 51 | 52 | %##################################################################### 53 | %######################### Document Ends ############################# 54 | %##################################################################### 55 | % -------------------- 56 | % Local Variables: 57 | % fill-column: 80 58 | % coding: utf-8 59 | % End: 60 | -------------------------------------------------------------------------------- /customization/econ-aea.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-aea 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | %##################################################################### 32 | %######################### Document Starts ########################### 33 | %##################################################################### 34 | \begin{document} 35 | 36 | This document uses ``\verb|econ-aea.bst|'', which is the style for journals of 37 | American Economic Association (AEA) such as {\itshape American Economic Review}, 38 | {\itshape Journal of Economic Literature} and {\itshape American Economic 39 | Journals}. 40 | 41 | \vspace{1em} 42 | 43 | \input{cited-part} 44 | \nocite{*} 45 | 46 | %% bst file: 47 | \bibliographystyle{econ-aea} 48 | \bibliography{../econ-example} 49 | 50 | \end{document} 51 | 52 | %##################################################################### 53 | %######################### Document Ends ############################# 54 | %##################################################################### 55 | % -------------------- 56 | % Local Variables: 57 | % fill-column: 80 58 | % coding: utf-8 59 | % End: 60 | -------------------------------------------------------------------------------- /customization/econ-te.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-te 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen,% 24 | pagebackref% Added pagebackref option 25 | ]{hyperref} 26 | 27 | % Change the style for back reference. 28 | \renewcommand*\backref[1]{\ifx#1\relax \else [#1] \fi} 29 | 30 | \setlength{\topmargin}{-20pt} 31 | \setlength{\textheight}{648pt} 32 | \setlength{\oddsidemargin}{15pt} 33 | \setlength{\textwidth}{440pt} 34 | 35 | %##################################################################### 36 | %######################### Document Starts ########################### 37 | %##################################################################### 38 | \begin{document} 39 | 40 | This document uses ``\verb|econ-te.bst|'', which is the style for 41 | ``\href{https://econtheory.org/}{\textit{Theoretical Economics (TE)}}''. 42 | 43 | \vspace{1em} 44 | 45 | I added `\texttt{pagebackref}` option to hyperref package which realizes page 46 | back reference. 47 | 48 | \vspace{1em} 49 | 50 | \input{cited-part} 51 | \nocite{*} 52 | 53 | %% bst file: 54 | \bibliographystyle{econ-te} 55 | \bibliography{../econ-example} 56 | 57 | \end{document} 58 | 59 | %##################################################################### 60 | %######################### Document Ends ############################# 61 | %##################################################################### 62 | % -------------------- 63 | % Local Variables: 64 | % fill-column: 80 65 | % coding: utf-8 66 | % End: 67 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 7 | 8 | econ.bst 9 | ============================== 10 | 11 | `econ.bst` is a BibTeX style file for economics. It provids the following 12 | features: 13 | 14 | * The author-year type citation (you need `natbib.sty` as well). 15 | * Reference style used in economics papers (`econ.bst` is not a BibTeX style for a specific journal). 16 | * Highly customizable. You can easily customize reference style as you wish. 17 | * You can use "certified random order" proposed by [Ray ⓡ Robson (2018), AER](http://dx.doi.org/10.1257/aer.20161492). 18 | 19 | 20 | ## Explanation of files 21 | 22 | | File | Explanation | 23 | |:---------------------------------------|:-------------------------------------------| 24 | | `econ.bst` | This is the main bst file. | 25 | | `econ-example.tex` | This file explains how to use econ.bst. | 26 | | [`econ-example.pdf`](econ-example.pdf) | A PDF file created fom `econ-example.tex`. | 27 | | `econ-example.bib` | This is a bibliography database file. | 28 | | [`customization`](customization) | This folder contains customized bst files. | 29 | | [`CHANGES.md`](CHANGES.md) | Changelog file. | 30 | | `README.md` | This file. | 31 | 32 | 33 | ## Lisence 34 | 35 | The texts file contained in this package may be distributed and/or modified 36 | under the conditions of the LaTeX Project Public License, either version 1.3c of 37 | this license or (at your option) any later version. The latest version of this 38 | license is in https://www.latex-project.org/lppl.txt and version 1.3c or later 39 | is part of all distributions of LaTeX version 2008 or later. 40 | 41 | This work has the LPPL maintenance status "maintained". 42 | 43 | The Current Maintainer of this work is Shiro Takeda. 44 | 45 | 46 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /customization/econ-numbers.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-numbers 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage[numbers]{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | urlcolor=MyGreen% 24 | ]{hyperref} 25 | 26 | \setlength{\topmargin}{-20pt} 27 | \setlength{\textheight}{648pt} 28 | \setlength{\oddsidemargin}{15pt} 29 | \setlength{\textwidth}{440pt} 30 | 31 | % Redefine \cicet command so that citet is equal to citep. 32 | \renewcommand{\citet}[1]{\citep{#1}} 33 | 34 | %##################################################################### 35 | %######################### Document Starts ########################### 36 | %##################################################################### 37 | \begin{document} 38 | 39 | In this document, we use numerical mode of \texttt{natbib.sty}. That is, we cite 40 | references by number index. 41 | \vspace*{1em} 42 | 43 | To use numerical mode of \texttt{natbib.sty}, we use the following setting. 44 | \begin{itemize} 45 | \item Load \texttt{natbib.sty} with option ``\texttt{numbers}'' like \\ 46 | \verb|\usepackage[numbers]{natbib}| 47 | \item Use ``\verb|econ-no-sort.bst|'' which means that entries in the reference 48 | are listed in citation order (not alphabetical order). 49 | \item Use \verb|\citep| command instead of \verb|\citet| command.\\ Note: 50 | strictly speaking, we use \texttt{citet} command but redefine 51 | \texttt{citet} command in the preample so that it is equal to 52 | \texttt{citep}. 53 | \end{itemize} 54 | 55 | \vspace{1em} 56 | 57 | \input{cited-part} 58 | \nocite{*} 59 | 60 | %% bst file: 61 | \bibliographystyle{econ-no-sort} 62 | \bibliography{../econ-example} 63 | 64 | \end{document} 65 | 66 | %##################################################################### 67 | %######################### Document Ends ############################# 68 | %##################################################################### 69 | % -------------------- 70 | % Local Variables: 71 | % fill-column: 80 72 | % coding: utf-8 73 | % End: 74 | -------------------------------------------------------------------------------- /customization/cited-part.tex: -------------------------------------------------------------------------------- 1 | 2 | \noindent Cited entries: \vspace{1em} \\ 3 | \noindent 4 | 5 | \citet{10.1257/aer.20170619}, 6 | \citet{Takeda2019a}, 7 | \citet{stakeda2019web}, 8 | \citet{saito17:_effec_immig_japan}, 9 | \citet{Ryza15:_advan_analy_spark_patter_learn_data_scale}, 10 | \citet{takeda2015a}, 11 | \citet{Takeda2014a}, 12 | \citet{yamazaki13:_japan}, 13 | \citet{Takeda2012a}, 14 | \citet{bergemann11:_ration}, 15 | \citet{goldin:katz:2011}, 16 | \citet{takeda10:_cge_analy_welfar_effec_trade}, 17 | \citet{10.1257/pol.2.1.155}, 18 | \citet{10.1257/aer.100.3.763}, 19 | \citet{takeda10:_region_effec_trade_liber_japan}, 20 | \citet{2009yamasue502165}, 21 | \citet{goldin:katz:2008}, 22 | \citet{Biker-2007-unemployment}, 23 | \citet{takeda06:_cge_analy_welfar_effec_trade}, 24 | \citet{2007yamasue482353}, 25 | \citet{Peri2007}, 26 | \citet{kusuoka06:_advan_mathem_econom}, 27 | \citet{BabikerRutherford-2005-EconomicEffectsof}, 28 | \citet{takeda05:_econom_analy_envir_regul}, 29 | \citet{ishikawa03:_green_gas_emiss_contr_open_econom}, 30 | \citet{brooke03:_gams}, 31 | \citet{DeGorter2002}, 32 | \citet{Babiker2000525}, 33 | \citet{goldin:katz:2000}, 34 | \citet{rutherford00:_gtapin_gtap_eg}, 35 | \citet{fujita99jp:_spatial_econom}, 36 | \citet{Babiker-1999-KyotoProtocoland}, 37 | \citet{Babiker-1999-JapaneseNuclearPower}, 38 | \citet{Parry1997}, 39 | \citet{borgers95:_note_implem_stron_domin}, 40 | \citet{wong95:_inter_trade_goods_factor_mobil_}, 41 | \citet{ishikawa94:_revis_stolp_samuel_rybcz_theor_produc_exter}, 42 | \citet{brezis93:_leapf_inter_compet}, 43 | \citet{RePEc:nbr:nberwo:4269}, 44 | \citet{krugman91:_geogr_trade}, 45 | \citet{helpman91:_inter_trade_trade_polic}, 46 | \citet{krugman91:_is_bilat_bad}, 47 | \citet{wang89:_model_therm_hydrod_aspec_molten}, 48 | \citet{lucas76:_econom_polic_evaluat}, 49 | \citet{milne-thomson68:_theor_hydrod}, 50 | \citet{essd-10-405-2018}, 51 | \citet{luthi08:_high}, 52 | \citet{doi:10.1175/2009BAMS2778.1}, 53 | \citet{Rivers-2005-CombiningTop-Downand}, 54 | \citet{WilsonMannOtsuki-2005-AssessingBenefitsof}, 55 | \citet{zhang2016Deep}, 56 | \citet{imbens2019Optimized}, 57 | \citet{Attwood06:SexedUp_art}, 58 | \citet{Attwood09:Mainstreaming}, 59 | \citet{attwood2010porn}, 60 | \citet{jones84:_handb_inter_econom}, 61 | \citet{jones85:_handb_inter_econom}, 62 | \citet{jones97:_handb_inter_econom}. 63 | \citet{d'Aspremont-2004-BalancedBayesianMechanisms}, 64 | \citet{d'Aspremont-2003-CorrelationIndependenceAndBayesian}, 65 | \citet{Chung-1999-ANoteOnMatsushima's}, 66 | \citet{d'Aspremont-1998-LinearInequalityMethodsTo}, 67 | \citet{myerson98:_exten_poiss_games_condor_jury_theor}, 68 | \citet{Black1958}, 69 | \citet{Asakawa-2021-DoubleDividendCarbonTax} 70 | \\ 71 | 72 | \vspace*{1em} 73 | \noindent Articles with certified random order:\\ 74 | \noindent 75 | \citet{10.1257/aer.20161492}, 76 | \citet{RePEc:hka:wpaper:2018-037}, 77 | \citet{vohra18:_maxim_farsig_stabl_set}, 78 | \citet{NBERw25205}. 79 | 80 | % -------------------- 81 | % Local Variables: 82 | % fill-column: 80 83 | % coding: utf-8 84 | % End: 85 | 86 | -------------------------------------------------------------------------------- /customization/README.md: -------------------------------------------------------------------------------- 1 | 7 | 8 | Contents of this folder 9 | ============================== 10 | 11 | + This folders includes bst files created by customizing econ.bst. 12 | + These bst files are basically the same as econ.bst except that function named like 13 | bst.xxx have different values. 14 | + If you want to customize econ.bst, see these files. 15 | 16 | | bst file | PDF file | Explanation | 17 | |:------------------------|:-------------------------------------------------|:----------------------------------------------------------| 18 | | `econ.bst` | [`econ-default.pdf`](econ-default.pdf) | The default econ.bst file. | 19 | | `econ-a.bst` | [`econ-a.pdf`](econ-a.pdf) | A simple style. | 20 | | `econ-b.bst` | [`econ-b.pdf`](econ-b.pdf) | A style with much decoration. | 21 | | `econ-no-sort.bst` | [`econ-no-sort.pdf`](econ-no-sort.pdf) | This style lists entries in citation order. | 22 | | `econ-abbr.bst` | [`econ-abbr.pdf`](econ-abbr.pdf) | This style uses abbreviated journal name. | 23 | | `econ-aea.bst` | [`econ-aea.pdf`](econ-aea.pdf) | The style for AEA journals such as AER, JEL, AEJ and JEP. | 24 | | `econ-econometrica.bst` | [`econ-econometrica.pdf`](econ-econometrica.pdf) | The style for Econometrica. | 25 | | `econ-jpe.bst` | [`econ-jpe.pdf`](econ-jpe.pdf) | The style for JPE (Journal of Poilitical Economy). | 26 | | `econ-jet.bst` | [`econ-jet.pdf`](econ-jet.pdf) | The style for JET (Journal of Economic Theory). | 27 | | `econ-jie.bst` | [`econ-jie.pdf`](econ-jie.pdf) | The style for JIE (Journal of International Economics). | 28 | | `econ-te.bst` | [`econ-te.pdf`](econ-te.pdf) | The style for TE (Theoretical Economics). | 29 | | | [`econ-numbers.pdf`](econ-numbers.pdf) | An example with numerical citation mode. | 30 | | | [`econ-many-authors.pdf`](econ-many-authors.pdf) | An example with a very large number of authros | 31 | 32 | 33 | | File | Explanation | 34 | |:------------------|:---------------------------------------------------------------------------| 35 | | journal_name.xlsx | This file stores correspondence between journal name and its abbreviation. | 36 | 37 | 38 | 39 | 40 | 41 | 49 | 50 | -------------------------------------------------------------------------------- /customization/econ-many-authors.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-many-authors 3 | 4 | %############################## Main ################################# 5 | \documentclass[10pt]{article} 6 | 7 | %% Use natbib.sty 8 | \usepackage[longnamesfirst]{natbib} 9 | \usepackage{newtxtext,newtxmath} 10 | \usepackage{url} 11 | \usepackage{graphicx} 12 | \usepackage{color} 13 | \definecolor{MyBrown}{rgb}{0.3,0,0} 14 | \definecolor{MyBlue}{rgb}{0,0,0.3} 15 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 16 | \definecolor{MyGreen}{rgb}{0,0.4,0} 17 | \usepackage[bookmarks=true,% 18 | bookmarksnumbered=true,% 19 | colorlinks=true,% 20 | linkcolor=MyBlue,% 21 | citecolor=MyRed,% 22 | filecolor=MyBlue,% 23 | pagecolor=MyBlue,% 24 | urlcolor=MyGreen% 25 | ]{hyperref} 26 | 27 | \setlength{\topmargin}{-20pt} 28 | \setlength{\textheight}{648pt} 29 | \setlength{\oddsidemargin}{15pt} 30 | \setlength{\textwidth}{440pt} 31 | 32 | %##################################################################### 33 | %######################### Document Starts ########################### 34 | %##################################################################### 35 | \begin{document} 36 | 37 | \noindent {\Large Examples of the bibliographic entries with many authors.} 38 | \begin{itemize} 39 | \item This file uses ``\texttt{econ.bst}'' and ``\verb|bib_with_many_authors.bib|''. 40 | \end{itemize} 41 | 42 | \vspace*{1em} 43 | 44 | In econ.bst, if the number of authors is greater than N1, only the first N2 45 | authors' names are displayed in the reference part (and other authors' names are 46 | omitted by "et el."). 47 | \begin{itemize} 48 | \item N1 is determined by ``\texttt{bst.max.author.num}'' (the default value = 8). 49 | \item N2 is determined by ``\texttt{bst.max.author.num.displayed}'' (the default value = 3). 50 | \end{itemize} 51 | 52 | \vspace*{1em} 53 | 54 | \noindent Examples of bibliographic entries with many authors. 55 | \begin{itemize} 56 | \item \citet{Pilia_2020}, \citet{Abbott_2016}, \citet{LHC_Physics_Letters_20121}. 57 | \item \citet{Abbott_2016} and \citet{LHC_Physics_Letters_20121} have more than 58 | 1000 authors (see the database in \verb|bib_with_many_authors.bib|). 59 | \end{itemize} 60 | 61 | \vspace*{1em} 62 | 63 | \noindent \textbf{[Note]} 64 | 65 | The bibtex program in ``TeX Live 2019'' generates the following error message when the 66 | number of authors is very large. bibtex in ``TeX Live 2020'' works well. 67 | \small 68 | \begin{verbatim} 69 | This is BibTeX, Version 0.99d (TeX Live 2019/W32TeX) 70 | Capacity: max_strings=200000, hash_size=200000, hash_prime=170003 71 | The top-level auxiliary file: econ-many-authors.aux 72 | The style file: ../econ.bst 73 | Reallocated glb_str_ptr (elt_size=4) to 20 items from 10. 74 | Reallocated global_strs (elt_size=200001) to 20 items from 10. 75 | Reallocated glb_str_end (elt_size=4) to 20 items from 10. 76 | Reallocated singl_function (elt_size=4) to 100 items from 50. 77 | Reallocated wiz_functions (elt_size=4) to 6000 items from 3000. 78 | Database file #1: bib_with_many_authors.bib 79 | Your field is more than 20000 characters---line 398 of file bib_with_many_authors.bib 80 | : B. Kaplan and A. Kapliy and J. Kaplon and D 81 | : . Kar and 82 | I'm skipping whatever remains of this entry 83 | \end{verbatim} 84 | \normalsize 85 | 86 | %% bst file: 87 | \bibliographystyle{../econ} 88 | \bibliography{bib_with_many_authors} 89 | 90 | \end{document} 91 | 92 | 93 | %##################################################################### 94 | %######################### Document Ends ############################# 95 | %##################################################################### 96 | % -------------------- 97 | % Local Variables: 98 | % fill-column: 80 99 | % coding: utf-8 100 | % End: 101 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- 1 | 5 | 6 | Changelogs for econ.bst 7 | ============================== 8 | 9 | ## Ver. 3.3 10 | 11 | * 2025-04-26: Added functions `bst.bvolume.pre` and `bst.bvolume.post` to set 12 | strings related to the volume of a book. 13 | 14 | * 2025-05-01: Made revisions that completely rewrote the program. 15 | 16 | 17 | 18 | ## Ver. 3.2 19 | 20 | * 2023-10-27: Added the new style `econ-te.bst`, which is the style for 21 | "Theoretical Economics". 22 | 23 | * 2023-10-27: In econ-sample.tex, I added `pagebackref` option to hyperref 24 | package which realizes page back reference. 25 | 26 | * 2023-10-28: Changed the default value of `bst.mthesis` and `bst.phdthesis`. 27 | 28 | 29 | ## Ver. 3.1.1 30 | 31 | * 2021-12-29: Changed the license (lppl 1.3 -> lppl 1.3c). 32 | 33 | * 2021-12-28: Fixed minor bugs. 34 | 35 | * 2021-05-25: Changed line ending of all text files to LF only. 36 | 37 | 38 | ## Ver. 3.1 39 | 40 | * 2021-05-23: Fixed a bug in label for sorting. 41 | 42 | * 2021-05-23: Added sample bibliography items with sortname field. 43 | 44 | * 2021-05-23: Suported sortname field. If you add sortname field to a 45 | bibliography entry, the value of sortname field is used for sorting instead of 46 | author or editor. For the details, see ``sorting'' section in 47 | econ-example.pdf. 48 | 49 | 50 | ## Ver. 3.0 51 | 52 | * 2020-12-29: bst files in the customization folder are updated. 53 | 54 | * 2020-06-23: In the new econ.bst, if the number of authors is greater than N1, 55 | only the first N2 authors' names are displayed in the reference part (and 56 | other authors' names are omitted by "et el."). 57 | 58 | N1 is determined by `bst.max.author.num` (the default value = 8). 59 | N2 is determined by `bst.max.author.num.displayed` (the default value = 3). 60 | 61 | See econ-example.pdf or econ-many-authors.pdf in the customization folder. 62 | 63 | 64 | ## Ver. 2.9 65 | 66 | * 2020-03-26: Fixed the bug related to book editors. 67 | 68 | 69 | ## Ver. 2.8 70 | 71 | * 2020-03-03: Changed the directory structure. 72 | 73 | 74 | ## Ver 2.7 75 | 76 | * 2020-02-27: Modified the document files. 77 | 78 | * 2019-10-16: Modified the default style of econ.bst. The new default style is 79 | simpler than the old one. 80 | 81 | * 2019-10-16: Set the roman font to font for URL (the default font for URL is 82 | type writer font). This is the change made to TeX file (not to bst file). 83 | 84 | * 2019-10-15: Removed "Time-Stamp" lines from all bst files. 85 | 86 | * 2019-10-14: In the previous version of econ.bst, econ.bst cannot handle DOI 87 | field with TeX control sequences such as underscore. The new econ.bst can 88 | handle DOI field with TeX control sequences. 89 | 90 | * 2019-10-01: Modified `customization/README.md`. 91 | 92 | * 2019-09-26: Supported the abbreviated journal names for `econ-jpe.bst` because 93 | JPE (Journal of Political Economy) uses abbreviated journal names. 94 | 95 | * 2019-09-21: Changed the default value for `bst.techrep`. 96 | 97 | 98 | ## Ver 2.6.1 99 | 100 | * Changed `format.tr.number`. 101 | 102 | * Added the new style `econ-abbr.bst`. In this style, we use abbreviated names 103 | for journal name such as "Am. Econ. Rev." for "American Economics Review". 104 | The list of abbreviated names is provided in "journal_name.xlsx". 105 | 106 | To use abbreviated journal name, we have to hardcode the list of all 107 | abbreviated journal names in the bst file. It makes the bst file quite 108 | long. So this feature is not provided in the standard `econ.bst` and provided 109 | only in `econ-abbr.bst` (and `econ-jet.bst`). 110 | 111 | 112 | ## Ver 2.6 113 | 114 | * Added the new style `econ-aea.bst` and removed `econ-aer.bst`. `econ-aea.bst` 115 | is the style for journals of AEA (American Economic Association) such as AER, 116 | JEL, and AEJ. 117 | 118 | * Added the new function `bst.max.author.num`. If the number of authors exceeds 119 | 12, the authors after the 2nd author are abbriviated by "et al.". 120 | 121 | 122 | ## Ver 2.5.1 123 | 124 | * Added URL and DOI to techreport. 125 | 126 | * Changed the default setting of `bst.url.doi` to `#2` (this means that only DOI 127 | is displayed if both DOI and URL fields have the values). 128 | 129 | 130 | ## Ver. 2.5 131 | 132 | * Changed the license of `econ.bst` to the LaTeX Project Public License. 133 | 134 | 135 | ## Ver. 2.4 136 | 137 | * Added the function to implement certificated random author ordering propsed by 138 | the following article. 139 | 140 | Ray, Debraj ⓡ Arthur Robson (2018) "Certified Random: A New Order for 141 | Coauthorship," American Economic Review, Vol. 108, No. 2, pp. 489–520, URL: 142 | http://www.aeaweb.org/articles?id=10.1257/aer.20161492, DOI: 143 | http://dx.doi.org/10.1257/aer.20161492. 144 | 145 | For this, the following functions are added: `bst.use.nameorder`, 146 | `bst.and.nameorder`, `bst.cite.and.nameorder`, `bst.and.others.nameorder`. 147 | 148 | For the details, see the section "Certified random order" in econ-example.pdf. 149 | 150 | * Changed the default value of `bst.doi.pre`. 151 | 152 | 153 | ## Ver. 2.3 154 | 155 | * Changed the default setting of `bst.hide.number`. 156 | 157 | * Modified the style for Ph.D. thesis (the title of Ph.D. thesis is treated as 158 | book title). 159 | 160 | * Modified the style for editors to be similar to the style for authors. Now, 161 | the setting of `bst.author.name` is applied to editors. 162 | 163 | 164 | ## Ver. 2.2 (2017-08-19) 165 | 166 | * Slightly changed the definition of `format.url`, `bst.url.pre` and 167 | `bst.url.post`. 168 | 169 | * Changed `\it` command to `\textit` command. 170 | 171 | * Added the function `bst.url.doi` which determines the way for displaying URL 172 | and DOI fields when both fields exist. You can choose three values for 173 | `bst.url.doi`. 174 | 175 | + `#0` -> Both fields are displayed 176 | + `#1` -> Only URL field is displayed 177 | + `#2` -> Only DOI field is displayed 178 | 179 | 180 | ## Ver. 2.1 (2013-07-09) 181 | 182 | * URL field: In the new econ.bst, URL field can be displayed. If you set 183 | non-zero to `bst.show.url`, url field is displayed before note field (this is 184 | the default behavior). If you set zero to `bst.show.url`, url field is 185 | suppressed. 186 | 187 | * Added the new function `bst.url.pre` and `bst.url.post`. These functions 188 | specify the strings before and after url field. 189 | 190 | * access field: Added the new function `bst.access.pre` and 191 | `bst.access.post`. These functions specify the strings before and after access 192 | field. Note that access field is specific to econ.bst and not inherent in the 193 | standard bib file. The value of access field is used for accessed date for 194 | URL. For example, suppose that there are the following two settings in the bib 195 | file 196 | 197 | url = {http://shirotakeda.org/en/tex/econ-bst.html}, 198 | access = {4th July, 2013} 199 | 200 | In the default econ.bst, these settings generate the reference like 201 | 202 | URL: http://shirotakeda.org/en/tex/econ-bst.html, accessed on 4th July, 2013. 203 | 204 | * Added the new function `bst.show.doi`. If you set non-zero to `bst.show.doi`, 205 | DOI field is displayed before note field. If you set zero to `bst.show.doi`, 206 | DOI field is suppressed (this is the default behavior). Note that DOI field is 207 | not inherent in the standard bib file. See econ-sample.pdf for an example. 208 | 209 | * Added the new function `bst.doi.pre` and `bst.doi.post`. These functions 210 | specify the strings before and after DOI field. 211 | 212 | * Added the new function `bst.post.note`. This function specifies the strings 213 | after note field. 214 | 215 | * Added new type "online". This is the document type for web page. Note that 216 | this is not inherent in the standard bib file and it does not work for other 217 | bst files. 218 | 219 | 220 | ## Ver. 2.0.1 (2011-12-05) 221 | 222 | * Fixed bugs for sorting entries. In version 2.0, entries of book and 223 | incollection type are not sometimes sorted in alphabetical order. 224 | 225 | * The previous econ.bst always puts `period' before the content of note 226 | field. The new econ.bst uses `comma' by default (but this depends on user 227 | customization). 228 | 229 | * Added new function `bst.hide.title`. If you set non-zero to bst.hide.title, 230 | title is not displayed. 231 | 232 | 233 | ## Ver. 2.0 (2011-11-10) 234 | 235 | * Added \bysame abbreviation of alternative style. 236 | 237 | Suppose that there are the following three entries: 238 | 239 | Mazda, A., Subaru, B., and Honda, C., (2011) "ABC" 240 | Mazda, A., Subaru, B., and Honda, C., (2011) "DEF" 241 | Mazda, A., Subaru, B., and Toyota, D., (2011) "GHI" 242 | 243 | When you set non-zero to `bst.use.bysame` in the previous econ.bst, 244 | these entries are listed like 245 | 246 | [List 1] 247 | Mazda, A., Subaru, B., and Honda, C., (2011) "ABC" 248 | ----, (2011) "DEF" 249 | Mazda, A., Subaru, B., and Toyota, D., (2011) "GHI" 250 | 251 | That is, the abbreviation of authors by \bysame is only applied to entries 252 | with exactly the same name. 253 | 254 | In the new econ.bst, you can choose an alternative abbreviation style like 255 | 256 | [List 2] 257 | Mazda, A., Subaru, B., Honda, C., (2011) "ABC" 258 | ----, ----, and ----, (2011) "DEF" 259 | ----, ----, and Toyota, D., (2011) "GHI" 260 | 261 | In the new econ.bst, you can choose three values for `bst.use.bysame`. 262 | 263 | + `#0`: Not use bysame command. 264 | + `#1`: Use bysame command like List 1 (this is the default value). 265 | + `#2`: Use bysame command like List 2. 266 | 267 | For the details, see econ-sample.pdf. 268 | 269 | 270 | * Abolished `bst.year.backward` and added `bst.year.position`. 271 | Now you can choose the position of year. 272 | 273 | If set to #0, year is always placed right after "author". 274 | 275 | If non-zero, year is placed at the end (before note field) except for aritcle 276 | type entry. 277 | 278 | In article type entry, the position of year changes according to the following 279 | rule: 280 | 281 | + `#1` -> year is placed at the end. 282 | + `#2` -> year is placed after journal name in aritcle type entry. 283 | + `#3` -> year is placed after volume in aritcle type entry. 284 | 285 | * Added `bst.year.na.pre` and `bst.year.na.post`. These functions are 286 | `bst.year.pre` and `bst.year.post` for non-article type entry. In the new 287 | econ.bst, `bst.year.pre` and `bst.year.post` are only applied to aritcle type 288 | entry. 289 | 290 | * Added `bst.editor.btitle.order`. 291 | 292 | This determines the order of editor and booktitle in incollection and 293 | inproceedings entry. 294 | 295 | If `#0`, editors - booktitle order (the default value). 296 | If non-zero, booktitle - editors order. 297 | 298 | * Added `bst.address.position`. 299 | 300 | You can choose the order of address and publisher by this function. 301 | 302 | If `#0`, address -> publisher order (the default value). 303 | If non-zero, publisher -> address order. 304 | 305 | 306 | ## Ver. 1.3.2 (2011-04-05) 307 | 308 | * Fixed a bug in `bst.hide.number`. 309 | 310 | 311 | ## Ver. 1.3.1 (2010-12-17) 312 | 313 | * Added the new function `bst.hide.number`. If you want to hide number filed, 314 | set non-zero to this function. 315 | 316 | 317 | ## Ver. 1.3 (2010-12-04) 318 | 319 | * Fixed a bug in period-comma handling. 320 | 321 | * Changed the rule for sorting entries. 322 | 323 | In the previous rule, econ.bst use full author name for primary sorting 324 | key. For example, suppose that there are references like 325 | 326 | Hatoyama, Fukuda, Abe (2009) "apple" 327 | Hatoyama, Aso, Fukuda, Abe (2007) "orange." 328 | Hatoyama, Abe, Fukuda, Koizumi (2009) "grape." 329 | 330 | In this case, econ.bst sorts references in the following order. 331 | 332 | Hatoyama, Abe, Fukuda, Koizumi (2009) "grape." 333 | Hatoyama, Aso, Fukuda, Abe (2007) "orange." 334 | Hatoyama, Fukuda, Abe (2009) "apple." 335 | 336 | In the new rule, econ.bst uses the abbreviated author name instead of the full 337 | author name. That is, the econ.bst uses 338 | 339 | Hatoyama et al. (2009) "apple." 340 | Hatoyama et al. (2007) "orange." 341 | Hatoyama et al. (2009) "grape." 342 | 343 | for the sorting key. So three articles are sorted in the following order. 344 | 345 | Hatoyama, Aso, Fukuda, Abe (2007) "orange." 346 | Hatoyama, Fukuda, Abe (2009) "apple." 347 | Hatoyama, Abe, Fukuda, Koizumi (2009) "grape." 348 | 349 | * Changed the rule for attaching alphabetical index to year. 350 | 351 | In the previous rule, econ.bst does not attach alphabetical index to year in 352 | the following two articles. 353 | 354 | Hatoyama, Abe, Fukuda, Koizumi (2009) "grape." 355 | Hatoyama, Fukuda, Abe (2009) "apple." 356 | 357 | This means that two articles have the exactly same abbreated citation form 358 | "Hatoyama et al.(2009)". 359 | 360 | In the new rule, econ.bst attaches alphabetical index to the above two 361 | articles like 362 | 363 | Hatoyama, Fukuda, Abe (2009a) "apple." 364 | Hatoyama, Abe, Fukuda, Koizumi (2009b) "grape." 365 | 366 | So the abbreated citation form for two articles are distinguished like 367 | Hatoyama et al.(2009a) and Hatoyama et al.(2009b). 368 | 369 | 370 | ## Ver. 1.2 (2008-12-22) 371 | 372 | * When there are successive periods and commas (for example, ".,", "..", ",," 373 | etc.), the second one is removed. In the previous econ.bst, it is difficult 374 | to use period and comma as delimiters at the same time because it often causes 375 | problems such as successive commas and periods. The new econ.bst removes the 376 | second period or comma if there are successive periods and commas. 377 | 378 | * Added new function `bst.and.others.num`. Author names in the citation part 379 | are abbreviated by et al. if the number of authors is greater or equal to 380 | bst.and.others.num. 381 | 382 | 383 | ## Ver. 1.1 (2008-11-17) 384 | 385 | * Added new functions: `bst.sort.year`, `bst.and.others`, `bst.cite.and` and 386 | `bst.cite.ands`. 387 | 388 | * Corrected typos. 389 | 390 | 391 | ## Ver. 1.0 (2007-11-20) 392 | 393 | * The initial release. 394 | 395 | 396 | 404 | 405 | -------------------------------------------------------------------------------- /econ-example.tex: -------------------------------------------------------------------------------- 1 | %#!pdflatex 2 | %#BIBTEX bibtex econ-example 3 | % Filename: econ-example.tex 4 | % Author: Shiro Takeda 5 | % First-written: <2002/11/02> 6 | % 7 | % This document explains how to use econ.bst. 8 | 9 | %############################## Main ################################# 10 | 11 | \documentclass[10pt]{article} 12 | 13 | %% Use natbib.sty. 14 | \usepackage{natbib} 15 | \usepackage{fancybox} 16 | \usepackage{newtxtext,newtxmath} 17 | \usepackage{url} 18 | \usepackage{graphicx} 19 | \usepackage{color} 20 | \definecolor{MyBrown}{rgb}{0.3,0,0} 21 | \definecolor{MyBlue}{rgb}{0,0.2,0.6} 22 | \definecolor{MyRed}{rgb}{0.4,0,0.1} 23 | \definecolor{MyGreen}{rgb}{0,0.4,0} 24 | \usepackage[bookmarks=true,bookmarksnumbered=true,colorlinks=true,linkcolor=MyBlue,citecolor=MyRed,filecolor=MyBlue,urlcolor=MyGreen,pagebackref]{hyperref} 25 | 26 | % Change the style for back reference. 27 | \renewcommand*\backref[1]{\ifx#1\relax \else [#1] \fi} 28 | 29 | \setlength{\topmargin}{-15pt} 30 | \setlength{\textheight}{638pt} 31 | \setlength{\oddsidemargin}{25pt} 32 | \setlength{\textwidth}{420pt} 33 | 34 | \makeatletter 35 | 36 | % Set the roman font to font for URL (the default font for URL is type writer font). 37 | \renewcommand\UrlFont{\rmfamily} 38 | 39 | \newenvironment{Frame}% 40 | {\setlength{\fboxsep}{15pt} 41 | \setlength{\mylength}{\linewidth}% 42 | \addtolength{\mylength}{-2\fboxsep}% 43 | \addtolength{\mylength}{-2\fboxrule}% 44 | \Sbox 45 | \minipage{\mylength}% 46 | \setlength{\abovedisplayskip}{0pt}% 47 | \setlength{\belowdisplayskip}{0pt}% 48 | }% 49 | {\endminipage\endSbox 50 | \[\fbox{\TheSbox}\]} 51 | 52 | \newcommand{\bysameline}{\hskip.3em \leavevmode\rule[.5ex]{3em}{.3pt}\hskip0.5em} 53 | 54 | %% Define \BibTeX command 55 | \def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em 56 | T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} 57 | \makeatother 58 | 59 | %%% title, author, acknowledgement, and date 60 | \title{\texttt{econ.bst}:\\ 61 | \BibTeX{} style for economics\\(ver. 3.3)\thanks{\texttt{econ.bst} is available at 62 | \url{https://github.com/ShiroTakeda/econ-bst}} 63 | } 64 | 65 | \author{Shiro Takeda\thanks{email: {\ttfamily shiro.takeda@gmail.com}.}} 66 | \date{2025-04-30} 67 | 68 | %##################################################################### 69 | %######################### Document Starts ########################### 70 | %##################################################################### 71 | \begin{document} 72 | 73 | %%% Title 74 | \maketitle 75 | 76 | \newlength{\mylength} 77 | \setlength{\fboxsep}{15pt} 78 | \setlength{\mylength}{\linewidth} 79 | \addtolength{\mylength}{-2\fboxsep} 80 | \addtolength{\mylength}{-2\fboxrule} 81 | 82 | %%% Table of contents. 83 | \tableofcontents 84 | 85 | %########################## Text Starts ############################## 86 | 87 | \setlength{\baselineskip}{16pt} 88 | 89 | \section{Main features} 90 | 91 | ``\texttt{econ.bst}'' is a \BibTeX{} style file. It provids the following 92 | features: 93 | \begin{Frame} 94 | \begin{itemize} 95 | \item The author-year type citation (you need ``\texttt{natbib.sty}'' as well). 96 | \item Reference style used in economics papers. 97 | \item Highly customizable. You can easily customize reference style as you 98 | wish. 99 | \item You can use ``\textit{certified random order}'' proposed by 100 | \href{http://dx.doi.org/10.1257/aer.20161492}{\citet[][AER]{10.1257/aer.20161492}}. 101 | \begin{itemize} 102 | \item If you want to use certified random order, please see Section 103 | \ref{sec:cro}. 104 | \end{itemize} 105 | \end{itemize} 106 | \end{Frame} 107 | 108 | \textbf{The third feature is the key characteristic of ``\texttt{econ.bst}''.} 109 | 110 | \section{How to use ``\texttt{econ.bst}''} 111 | 112 | \begin{itemize} 113 | \item ``\texttt{econ.bst}'' requires ``\texttt{natbib.sty}'', which is 114 | installed in the standard \TeX{} system. 115 | \item Put ``\texttt{econ.bst}'' file somewhere under the directory (folder) 116 | ``\texttt{/texmf/bibtex/bst}''. Or you can place ``\texttt{econ.bst}'' at 117 | the same directory as the \TeX{} file you are editting. 118 | \item See ``\texttt{econ-example.tex}'' for preparing an tex file. 119 | \item For \BibTeX{} in general, see, for example, 120 | \href{https://www.economics.utoronto.ca/osborne/latex/BIBTEX.HTM}{Using 121 | BibTeX: a short guide} by Martin J. Osborne. 122 | \end{itemize} 123 | 124 | 125 | \subsection{Preparing a tex file} 126 | 127 | In the tex file you are editting, you first need to load \texttt{natbib} 128 | package in the preample (i.e. before \verb|\begin{document}|) 129 | \begin{Frame} 130 | \begin{verbatim} 131 | \usepackage{natbib} 132 | \end{verbatim} 133 | \end{Frame} 134 | 135 | In the main text, you can cite bibliographic entries by \verb|\citet| 136 | command. 137 | 138 | For example, ``\verb|\citet{Takeda2014a}| is my paper'' generates the output like 139 | \begin{Frame} 140 | \citet{Takeda2014a} is my paper. 141 | \end{Frame} 142 | 143 | At the place where you want to add ``the reference part'', you have to set the 144 | bibliography style (\texttt{econ.bst}) and database (\texttt{econ-example.bib}) like 145 | \begin{Frame} 146 | \begin{verbatim} 147 | \bibliographystyle{econ} 148 | \bibliography{econ-example} 149 | \end{verbatim} 150 | \end{Frame} 151 | Note that you should not attach the extension ``bst'' and ``bib'' to the bst and 152 | database file name. 153 | 154 | \subsection{Running pdf\TeX{}} 155 | 156 | \texttt{econ-example.tex} is created so that it is compiled with pdf\LaTeX\ 157 | (``\texttt{pdflatex.exe}''). So to compile \texttt{econ-example.tex}, you just 158 | execute the following commnads. 159 | \begin{Frame} 160 | \begin{verbatim} 161 | pdflatex econ-example.tex 162 | bibtex econ-example 163 | pdflatex econ-example.tex 164 | pdflatex econ-example.tex 165 | \end{verbatim} 166 | \end{Frame} 167 | 168 | \section{Customization} 169 | 170 | ``\texttt{econ.bst}'' defines many functions which have names like 171 | ``\texttt{bst.xxx.yyy}''. You can easily customize the reference style by 172 | changing the contents of these functions. 173 | 174 | \subsection{Notes on customization} 175 | 176 | \begin{itemize} 177 | \item Customization here is customization of the reference part. Style 178 | in the citation part mainly depends on a style file for citation 179 | (``\texttt{natbib.sty}''). 180 | \item Except for some cases, customization here cannot change order 181 | of fields (order of author, year, title etc.) 182 | \item Functions with ``\texttt{.pre}'' define strings attached to the start 183 | of the field and functions with ``\texttt{.post}'' define strings 184 | attached to the end of field. For exmple, 185 | ``\texttt{bst.author.pre}'' defines strings attached before author. 186 | \item You can change order of entries (references). It will be 187 | explained in Section \ref{sec:sort_rule}. 188 | \item In a bst file, integer (e.g. 0, 1, 2) is represented as \verb|#0|, \verb|#1| , \verb|#2|. 189 | \end{itemize} 190 | 191 | \subsection{Customized bst files} 192 | 193 | Many customized bst files listed in Table \ref{tab:c-files} are already 194 | provided. You can find these files under the ``customization'' folder. See 195 | \url{https://github.com/ShiroTakeda/econ-bst/tree/master/customization}. 196 | 197 | \begin{table}[htbp] 198 | \begin{flushleft} 199 | \caption{List of customized files.} 200 | \label{tab:c-files} 201 | \begin{tabular}{l|l} \hline \hline 202 | \multicolumn{1}{c}{bst files} & \multicolumn{1}{c}{Explanation} \\\hline 203 | \texttt{econ.bst} & The default econ.bst file. \\\hline 204 | \texttt{econ-a.bst} & A simple style. \\\hline 205 | \texttt{econ-b.bst} & A style with much decoration. \\\hline 206 | \texttt{econ-no-sort.bst} & This style lists entries in citation order. \\\hline 207 | \texttt{econ-abbr.bst} & This style uses abbreviated journal name. \\\hline 208 | \texttt{econ-aea.bst} & The style for AEA journals such as AER, JEL, AEJ and JEP. \\\hline 209 | \texttt{econ-econometrica.bst} & The style for Econometrica. \\\hline 210 | \texttt{econ-jpe.bst} & The style for JPE (\textit{Journal of Poilitical Economy}). \\\hline 211 | \texttt{econ-jet.bst} & The style for JET (\textit{Journal of Economic Theoriy}). \\\hline 212 | \texttt{econ-jie.bst} & The style for JIE (\textit{Journal of International Economics}). \\\hline 213 | \texttt{econ-te.bst} & The style for TE (\textit{Theoretical Economics}). \\\hline 214 | \texttt{econ-old.bst} & The style of the old econ.bst. \\\hline 215 | \end{tabular} 216 | \end{flushleft} 217 | \end{table} 218 | 219 | \subsection{Examples of customization} 220 | 221 | \subsubsection{Change delimiter used to separate mutiple author names 222 | from ``and'' to ``\&''.} 223 | 224 | For this, change the contents of ``\texttt{bst.and}'' and ``\texttt{bst.ands}''. 225 | \paragraph{Default definition:} 226 | \begin{Frame} 227 | \begin{verbatim} 228 | FUNCTION {bst.and} 229 | { " and " } 230 | FUNCTION {bst.ands} 231 | { ", and " } 232 | \end{verbatim} 233 | \end{Frame} 234 | 235 | \paragraph{New definition:} 236 | \begin{Frame} 237 | \begin{verbatim} 238 | FUNCTION {bst.and} 239 | { " \& " } 240 | FUNCTION {bst.ands} 241 | { " \& " } 242 | \end{verbatim} 243 | \end{Frame} 244 | 245 | Then, author names in reference part are displayed as follows: 246 | \begin{center} 247 | Fujita, Masahisa, Paul~R. Krugman, and Anthony~J. Venables \\ 248 | $\downarrow$ \\ 249 | Fujita, Masahisa, Paul~R. Krugman \& Anthony~J. Venables 250 | \end{center} 251 | 252 | See ``\texttt{econ-b.bst}'' for an example. 253 | 254 | \subsubsection{Make author to small caps style} 255 | 256 | For this, change the contents of ``\texttt{bst.author.pre}'' and ``\texttt{bst.author.post}''. 257 | \paragraph{Default definition:} 258 | \begin{Frame} 259 | \begin{verbatim} 260 | FUNCTION {bst.author.pre} 261 | { "" } 262 | FUNCTION {bst.author.post} 263 | { "" } 264 | \end{verbatim} 265 | \end{Frame} 266 | 267 | \paragraph{New definition:} 268 | \begin{Frame} 269 | \begin{verbatim} 270 | FUNCTION {bst.author.pre} 271 | { "\textsc{" } 272 | FUNCTION {bst.author.post} 273 | { "}" } 274 | \end{verbatim} 275 | \end{Frame} 276 | 277 | Then, author names in reference part are changed as follows: 278 | \begin{center} 279 | Fujita, Masahisa, Paul~R. Krugman, and Anthony~J. Venables \\ 280 | $\downarrow$ \\ 281 | \textsc{Fujita, Masahisa, Paul~R. Krugman, and Anthony~J. Venables} 282 | \end{center} 283 | 284 | See ``\texttt{econ-b.bst}'' for an example. 285 | 286 | \subsubsection{Change the style of volume and number} 287 | 288 | For this, change the contents of ``\texttt{bst.volume.pre}'', 289 | ``\texttt{bst.volume.post}'', ``\texttt{bst.number.pre}'' and 290 | ``\texttt{bst.number.post}''. 291 | 292 | \paragraph{Default definition:} 293 | \begin{Frame} 294 | \begin{verbatim} 295 | FUNCTION {bst.volume.pre} 296 | { ", " } 297 | FUNCTION {bst.volume.post} 298 | { "" } 299 | FUNCTION {bst.number.pre} 300 | { " (" } 301 | FUNCTION {bst.number.post} 302 | { ")" } 303 | \end{verbatim} 304 | \end{Frame} 305 | 306 | \paragraph{New definition:} 307 | \begin{Frame} 308 | \begin{verbatim} 309 | FUNCTION {bst.volume.pre} 310 | { ", Vol. " } 311 | FUNCTION {bst.volume.post} 312 | { "" } 313 | FUNCTION {bst.number.pre} 314 | { ", No. " } 315 | FUNCTION {bst.number.post} 316 | { "" } 317 | \end{verbatim} 318 | \end{Frame} 319 | 320 | By this, the style of volume and number change from ``5 (10)'' to ``Vol. 5, 321 | Non. 10''. See ``\texttt{econ-b.bst}'' for an example. 322 | 323 | \subsubsection{Abbreviation of author name} 324 | 325 | By default, when there are mutiple documents of the same author, author 326 | name except for the first document is abbreviated by \verb|\bysame| 327 | command (i.e. \bysameline). 328 | 329 | If you want to always show author name for all documents, change the 330 | content of ``\texttt{bst.use.bysame}'' as follows: 331 | \begin{Frame} 332 | \begin{verbatim} 333 | FUNCTION {bst.use.bysame} 334 | { #0 } 335 | \end{verbatim} 336 | \end{Frame} 337 | 338 | In the default setting (`\texttt{bst.use.bysame}' is set to \#1), author names 339 | are abbreviated when they are exactly the same. For example, suppose that there 340 | are the following entries 341 | \begin{itemize} 342 | \item Mazda, A., Subaru, B., and Honda, C., (2011) "ABC" 343 | \item Mazda, A., Subaru, B., and Honda, C., (2011) "DEF" 344 | \item Mazda, A., Subaru, B., and Toyota, D., (2011) "GHI" 345 | \end{itemize} 346 | \vspace*{1em} 347 | 348 | In the default setting, these entries are listed like 349 | \begin{Frame} 350 | \begin{itemize} 351 | \item Mazda, A., Subaru, B., and Honda, C., (2011) "ABC" 352 | \item \bysameline, (2011) "DEF" 353 | \item Mazda, A., Subaru, B., and Toyota, D., (2011) "GHI" 354 | \end{itemize} 355 | \end{Frame} 356 | 357 | That is, the abbreviation of authors by `bysame' is only applied to 358 | entries with exactly the same authors. 359 | 360 | If you set \#2 to `bst.use.bysame' like 361 | \begin{Frame} 362 | \begin{verbatim} 363 | FUNCTION {bst.use.bysame} 364 | { #2 } 365 | \end{verbatim} 366 | \end{Frame} 367 | you can choose alternative abbreviation style like 368 | \begin{Frame} 369 | \begin{itemize} 370 | \item Mazda, A., Subaru, B., Honda, C., (2011) "ABC" 371 | \item \bysameline, \bysameline, and \bysameline, (2011) "DEF" 372 | \item \bysameline, \bysameline, and Toyota, D., (2011) "GHI" 373 | \end{itemize} 374 | \end{Frame} 375 | \vspace*{1em} 376 | 377 | See ``\texttt{econ-a.bst}'' and ``\texttt{econ-b.bst}'' for examples. 378 | 379 | 380 | \subsubsection{Order of first and last name in author field} 381 | 382 | ``\texttt{bst.author.name}'' defines order of first and last name in author field. 383 | 384 | \paragraph{Default definition:} 385 | \begin{Frame} 386 | \begin{verbatim} 387 | FUNCTION {bst.author.name} 388 | { #0 } 389 | \end{verbatim} 390 | \end{Frame} 391 | 392 | If you change \verb|#0| to \verb|#1| or \verb|#2|, you can customize 393 | order of first and family name. For example, suppose author field is 394 | defined as follows: 395 | \begin{verbatim} 396 | author = {Masahisa Fujita and Paul R. Krugman and Anthony J. Venables} 397 | \end{verbatim} 398 | 399 | According to the content of ``\texttt{bst.author.name}'', expression of 400 | author changes as follows: 401 | \begin{Frame} 402 | \begin{itemize} 403 | \item \verb|#0|: First author $\rightarrow$ last-first, other authors 404 | $\rightarrow$ first-last.\\ 405 | $\rightarrow$ Fujita, Masahisa, Paul~R. Krugman, and 406 | Anthony~J. Venables 407 | \item \verb|#1|: All authos $\rightarrow$ last-first \\ 408 | $\rightarrow$ Fujita, Masahisa, Krugman, Paul~R., and Venables, Anthony~J. 409 | \item \verb|#2|: All authors $\rightarrow$ first-last \\ 410 | $\rightarrow$ Masahisa Fujita, Paul~R. Krugman, and Anthony~J. Venables 411 | \end{itemize} 412 | \end{Frame} 413 | 414 | \subsubsection{First name in initial} 415 | 416 | By default, first name is displayed in full. If you change the content 417 | of ``\texttt{bst.first.name.initial}'' to non-zero, first name is displayed 418 | in initial. For example, 419 | \begin{center} 420 | Fujita, Masahisa, Paul~R. Krugman, and Anthony~J. Venables \\ 421 | $\downarrow$ \\ 422 | Fujita, M., P.~R. Krugman, and A.~J. Venables 423 | \end{center} 424 | 425 | See ``\texttt{econ-a.bst}'' for an exmpale. 426 | 427 | \subsubsection{Decapitalize letters in title field} 428 | 429 | Suppose that the title field is defined as follows 430 | \begin{center} 431 | \verb| title = {Econometric Policy Evaluation: A Critique}| 432 | \end{center} 433 | 434 | Then, title is displayed in reference as follows: 435 | \begin{center} 436 | Econometric Policy Evaluation: A Critique 437 | \end{center} 438 | 439 | If you change the content of ``\texttt{bst.title.lower.case}'' to 440 | non-zero, letters except the first letter are decapitalized. That is, 441 | you get the following expression in reference: 442 | \begin{center} 443 | Econometric policy evaluation: A critique 444 | \end{center} 445 | 446 | See ``\texttt{econ-a.bst}'' for an exmpale. 447 | 448 | 449 | \subsubsection{Number index before documents in reference} 450 | 451 | You can put the number index to each documents as in 452 | ``\texttt{plain.bst}''. For this, change the content of 453 | ``\texttt{bst.use.number.index}'' to non-zero. 454 | \begin{Frame} 455 | \begin{verbatim} 456 | FUNCTION {bst.use.number.index} 457 | { #1 } 458 | \end{verbatim} 459 | \end{Frame} 460 | 461 | If you use fonts other than computer modern fonts, you had better adjust 462 | the contents of functions ``\texttt{bst.number.index.xxx.yyy}''. 463 | 464 | See ``\texttt{econ-b.bst}'' for an exmpale. 465 | 466 | 467 | \subsubsection{List old references first} 468 | 469 | By default, references written by the same author are listed in 470 | chronological order (old documents are listed first). If you change the 471 | contents of ``\texttt{bst.reverse.year}'' to non-zero, the order is 472 | reversed. 473 | \begin{Frame} 474 | \begin{verbatim} 475 | FUNCTION {bst.reverse.year} 476 | { #1 } 477 | \end{verbatim} 478 | \end{Frame} 479 | 480 | \subsubsection{Change the position of year} 481 | 482 | By default, year is always displayed right after author name. You can 483 | change the place of year by setting other values to 484 | ``\texttt{bst.year.position}''. 485 | \\ 486 | 487 | If non-zero set to ``\texttt{bst.year.position}'', year is placed 488 | \begin{itemize} 489 | \item at the end of line if there is no ``\texttt{note}'' field, 490 | \item and before ``\texttt{note}'' field if there is. 491 | \end{itemize} 492 | for non-article type entry. 493 | 494 | With respect to aritcle type entry, the following rule is applied: 495 | \begin{Frame} 496 | \begin{enumerate} 497 | \item \verb|#1|: $\rightarrow$ year is placed at the end (before note field). 498 | \item \verb|#2|: $\rightarrow$ year is placed after journal name. 499 | \item \verb|#3|: $\rightarrow$ year is placed after volume. 500 | \end{enumerate} 501 | \end{Frame} 502 | 503 | For example, reference style changes as follows: 504 | \begin{description} 505 | \item[\#0: ] Mazda, A. and B. Subaru, 2007, ``ABC,'' \textit{Journal of 506 | Automobiles}, 1 (2), pp. 1-10. 507 | \item[\#1: ] Mazda, A. and B. Subaru, ``ABC,'' \textit{Journal of Automobiles}, 508 | 1 (2), pp. 1-10, 2007. 509 | \item[\#2: ] Mazda, A. and B. Subaru, ``ABC,'' \textit{Journal of Automobiles}, 510 | 2007, 1 (2), pp. 1-10. 511 | \item[\#3: ] Mazda, A. and B. Subaru, ``ABC,'' \textit{Journal of Automobiles}, 512 | 1 (2), 2007, pp. 1-10. 513 | \end{description} 514 | 515 | See ``\texttt{econ-a.bst}'' and ``\texttt{econ-b.bst}'' for exmpales. 516 | 517 | 518 | \subsubsection{Order of editors and book title in incollection and inproceedings entry} 519 | 520 | By default, editor name comes before book title in incollection and 521 | inproceedings entry. You can reverse this order by 522 | setting non-zero to `bst.editor.btitle.order' like 523 | \begin{Frame} 524 | \begin{verbatim} 525 | FUNCTION {bst.editor.btitle.order} 526 | { #1 } 527 | \end{verbatim} 528 | \end{Frame} 529 | 530 | 531 | \begin{Frame} 532 | Krugman, Paul~R. (1991) ``Is Bilateralism Bad?'' in Elhanan Helpman and Assaf 533 | Razin eds. {\it International Trade and Trade Policy}, Cambridge, MA: MIT 534 | Press, pp. 9--23. 535 | \begin{center} 536 | $\downarrow$ 537 | \end{center} 538 | Krugman, Paul~R. (1991) ``Is Bilateralism Bad?'' in {\it International Trade 539 | and Trade Policy} eds. by Elhanan Helpman and Assaf Razin, Cambridge, MA: 540 | MIT Press, pp. 9--23. 541 | \end{Frame} 542 | 543 | \subsubsection{Order of address and publisher} 544 | 545 | By default, publisher address is placed before publisher name. You can 546 | reverse this order by setting non-zero to `bst.address.position'. 547 | \begin{Frame} 548 | Krugman, Paul~R. (1991) ``Is Bilateralism Bad?'' in Elhanan Helpman and 549 | Assaf Razin eds. {\it International Trade and Trade Policy}, 550 | Cambridge, MA, MIT Press, pp. 9--23. 551 | \begin{center} 552 | $\downarrow$ 553 | \end{center} 554 | Krugman, Paul~R. (1991) ``Is Bilateralism Bad?'' in Elhanan Helpman and Assaf 555 | Razin eds. {\it International Trade and Trade Policy}, MIT Press, 556 | Cambridge, MA, pp. 9--23. 557 | \end{Frame} 558 | 559 | \subsubsection{When the number of authors is very large} 560 | 561 | In some research areas, the number of authors of a paper is sometimes very large 562 | (more than 100 ). In such a bibliographic entry, it is not possible to list all 563 | authors names in the reference part. To handle a bibliographic entry with many 564 | authors, ``\texttt{econ.bst}'' lists only a part of authors when the number of 565 | authors is large. In particular, econ.bst works as follows: 566 | \begin{itemize} 567 | \item If the number of authors is greater than N1, only the first N2 authors' 568 | names are displayed in the reference part (and other authors' names are 569 | omitted by ``et el.''). 570 | \item N1 is determined by `bst.max.author.num' (the default value = 8). 571 | \item N2 is determined by `bst.max.author.num.displayed' (the default value = 572 | 3). 573 | \end{itemize} 574 | 575 | This function is applied to The following three entries: 576 | \citet{essd-10-405-2018}, \citet{luthi08:_high}, and 577 | \citet{doi:10.1175/2009BAMS2778.1}. In addition, \texttt{econ-many-authors.tex} 578 | in the customization folder includes other examples. 579 | 580 | 581 | \subsection{Customization of citation part} 582 | 583 | We have so far seen the customization of reference part. ``\texttt{econ.bst}'' 584 | also can change the styles of citation part although it is highly limited. 585 | 586 | \subsubsection{The number of authors for ``\textit{et al.}'' in citation part} 587 | 588 | With \texttt{natbib.sty}, you can cite a paper by both full names and 589 | abbreviated names. For example, by using command `\verb|\citet|' and 590 | `\verb|\citet*|', you can generate the following two styles. 591 | \begin{itemize} 592 | \item Citation by full names: \\ 593 | \verb|\citet*{Takeda2014a}| $\longrightarrow$ \citet*{Takeda2014a} 594 | \item Citation by abbreviated names: \\ 595 | \verb|\citet{Takeda2014a}| $\longrightarrow$ \citet{Takeda2014a} 596 | \end{itemize} 597 | 598 | By the default, author names more than three are abbreviated. But you can change 599 | the number of authors to which abbreviation is applied. For example, if you set 600 | \verb|#4| to `\texttt{bst.and.others.num}`, abbreviation is applied only to the 601 | entry with more than four authors. 602 | \begin{Frame} 603 | \begin{verbatim} 604 | FUNCTION {bst.and.others.num} 605 | { #4 } 606 | \end{verbatim} 607 | \end{Frame} 608 | 609 | \subsection{Customization of citation part by \texttt{natbib.sty}} 610 | 611 | The style of citation part is mainly controlled by \texttt{natbib.sty}. You can 612 | change the style of citation part by changing commands and options provided by 613 | \texttt{natbib.sty}. 614 | See the manual of \texttt{natbib.sty} for the details. 615 | \begin{itemize} 616 | \item The manual of \texttt{natbib.sty}: 617 | \href{https://mirror.ctan.org/macros/latex/contrib/natbib/natbib.pdf}{natbib.pdf} 618 | \item The reference sheet of \texttt{natbib.sty}: 619 | \href{https://mirror.ctan.org/macros/latex/contrib/natbib/natnotes.pdf}{natnotex.pdf} 620 | \end{itemize} 621 | 622 | \subsubsection{Citation by number index} 623 | 624 | Here I show one customization of \texttt{natbib.sty} for citation style. With 625 | \texttt{natbib.sty}, we usually use ``author (year)'' citation format. However, 626 | we can use citation by numder index like [1], [2], [3]... 627 | 628 | To use this style, you first need to load \texttt{natbib} package with option 629 | ``\texttt{numbers}'' 630 | \begin{Frame} 631 | \begin{verbatim} 632 | \usepackage[numbers]{natbib} 633 | \end{verbatim} 634 | \end{Frame} 635 | 636 | In addition, you need to use \texttt{citep} command in the citation part like 637 | \begin{Frame} 638 | \begin{verbatim} 639 | \citep{Takeda2014a} 640 | \end{verbatim} 641 | \end{Frame} 642 | 643 | See ``\texttt{econ-numbers.tex}'' and ``\texttt{econ-numbers.pdf}'' for an example. 644 | 645 | \section{Certified random order} 646 | \label{sec:cro} 647 | 648 | \subsection{What is ``certified random order''?} 649 | 650 | The ordering of author names in joint publications in economics is typically 651 | alphabetical. However, alphabetical order has its shortcomings; in particular, 652 | it confers greater benefits on the first author.\footnote{See 653 | \citet{10.1257/aer.20161492} for the details.} This can happen for various 654 | reasons, including the use of the ``et al.'' convention, the bunching of 655 | bibliographic references for early-ordered names in reference lists, and the 656 | psychological focus on first authors. 657 | 658 | \citet{10.1257/aer.20161492} propose ``certified random order,'' in which names 659 | are separated by a symbol, \textcircled{r}, that certifies or signals that the 660 | author names are in random order. In particular, the symbol permits authors to 661 | ``certify'' that a reverse name order is only due to randomization, and avoids 662 | the usual interpretation of name reversal in economics. 663 | 664 | ``\texttt{econ.bst}'' can handle references to papers in random order. Examples 665 | of such papers in this document are \citet{10.1257/aer.20161492}, 666 | \citet{RePEc:hka:wpaper:2018-037}, \citet{vohra18:_maxim_farsig_stabl_set}, 667 | \citet{NBERw25205}. 668 | 669 | 670 | \subsection{How to cite papers in certified random order} 671 | 672 | To cite papers in certified random order with ``\texttt{econ.bst}'', you must 673 | flag those entries in the bib file. To achieve this, ``\texttt{econ.bst}'' 674 | contains the field ``\texttt{nameorder}''. If the bibliographical entry uses 675 | random order, add the following information to that entry: 676 | \begin{verbatim} 677 | nameorder = {random} 678 | \end{verbatim} 679 | 680 | For intance, the entry for \citet{10.1257/aer.20161492} is specified in 681 | \texttt{econ-example.bib} as follows: 682 | \begin{verbatim} 683 | @article{10.1257/aer.20161492, 684 | Author = {Ray, Debraj and Robson, Arthur}, 685 | Title = {Certified Random: A New Order for Coauthorship}, 686 | Journal = {American Economic Review}, 687 | Volume = {108}, 688 | Number = {2}, 689 | Year = {2018}, 690 | Month = {February}, 691 | Pages = {489-520}, 692 | DOI = {10.1257/aer.20161492}, 693 | URL = {http://www.aeaweb.org/articles?id=10.1257/aer.20161492}, 694 | nameorder = {random} 695 | } 696 | \end{verbatim} 697 | 698 | \noindent \textbf{[Notes]} \\ 699 | 1. The field ``nameorder'' is currently unique to \texttt{econ.bst} and it 700 | is not a field used in bibliography databases (at least for now). 701 | 702 | \noindent 2. ``\texttt{econ.bst}'' does not itself randomize the order of 703 | names. It simply cites an existing reference in random order, as the authors 704 | intend it to be cited. 705 | \vspace*{1em} 706 | 707 | 708 | With the ``nameorder'' field in place, there is nothing else you need to change, 709 | and you can cite bibliographic entries as before. For example, the command 710 | \verb|\citet{10.1257/aer.20161492}| will generate the citation 711 | \citet{10.1257/aer.20161492} in the text, and the following entry in the 712 | references: 713 | 714 | \begin{quote} 715 | Ray, Debraj \textcircled{r} Arthur Robson (2018) ``Certified Random: A New 716 | Order for Coauthorship,'' \textit{American Economic Review}, 108 (2), 717 | 489--520, \href{http://dx.doi.org/10.1257/aer.20161492}{\urlstyle{rm} 718 | \nolinkurl{10.1257/aer.20161492}}. 719 | \end{quote} 720 | 721 | Under the random order style, an entry with two authors is cited as already 722 | described: \citet{10.1257/aer.20161492}. On the other hand, an entry with more 723 | than two authors has two citation styles, depending on whether all names are 724 | cited in full, or the citation is abbreviated: 725 | \begin{itemize} 726 | \item All-names citation $\longrightarrow$ \citet*{NBERw25205} 727 | \item Abbreviated citation $\longrightarrow$ \citet{NBERw25205} 728 | \end{itemize} 729 | 730 | Note that in the abbreviated names style, \textcircled{r} is used instead of 731 | ``et''. Think of \textcircled{r} as a conjunction just as ``and'' or ``but''. In 732 | verbal citations, it would be pronounced just as the letter ``r'' is pronounced. 733 | 734 | \subsection{Customization for certified random order} 735 | 736 | The behavior of random order is controlled by the following functions: 737 | `\texttt{bst.use.nameorder}', `\texttt{bst.and.nameorder}', 738 | `\texttt{bst.cite.and.nameorder}' and `\texttt{bst.and.others.nameorder}'. 739 | \vspace*{1em} 740 | 741 | Under the default setting of ``\texttt{econ.bst}'', random order is 742 | automatically used for bibliographic entries with `\texttt{nameorder}' field. 743 | However, if you set \verb|#0| to `\texttt{bst.use.nameorder}' as follows, the 744 | function of random order is not used. 745 | \begin{Frame} 746 | \begin{verbatim} 747 | FUNCTION {bst.use.nameorder} 748 | { #0 } % Not use random order 749 | \end{verbatim} 750 | \end{Frame} 751 | 752 | Under the default setting, we use ``\textcircled{r}'' (\verb|\textcircled{r}|) 753 | for the symbol for separating author names. 754 | They are defined with the following code in \texttt{econ.bst}. 755 | \begin{Frame} 756 | \begin{verbatim} 757 | FUNCTION {bst.and.nameorder} 758 | { " \textcircled{r} " } 759 | 760 | FUNCTION {bst.cite.and.nameorder} 761 | { " \textcircled{r} " } 762 | 763 | FUNCTION {bst.and.others.nameorder} 764 | { " \textcircled{r}~al." } 765 | \end{verbatim} 766 | \end{Frame} 767 | 768 | You can use an alternative symbol by redefining these functions: 769 | `\texttt{bst.and.nameorder}', `\texttt{bst.cite.and.nameorder}' and 770 | `\texttt{bst.and.others.nameorder}'. 771 | 772 | 773 | \section{Sorting rule} 774 | \label{sec:sort_rule} 775 | 776 | \noindent \textbf{[Note]} If you want to create an ordinary list of 777 | references, you need not read this part. The explanation below is 778 | for sorting references in a special way. 779 | 780 | \subsection{Basic sorting rule} 781 | 782 | The sorting of references is done according to values of fields defined 783 | in bib files. Basically, sorting is done according to the following 784 | order of priority: 785 | \begin{enumerate} 786 | \item Type of entry (if ``\texttt{bst.sort.entry.type}'' has non-zero value) 787 | \item Value of ``\texttt{year}'' field (if ``\texttt{bst.sort.year}'' has non-zero value) 788 | \item Value of ``\texttt{absorder}'' field (if ``\texttt{absorder}'' field has 789 | a value) 790 | \item Value of ``\texttt{author}'' (or ``\texttt{editor}'') field. 791 | \begin{itemize} 792 | \item If ``\texttt{sortname}'' field is assigned a value, it is used 793 | instead of ``\texttt{author}'' and ``\texttt{editor}''. 794 | \end{itemize} 795 | \item Value of ``\texttt{year}'' field. 796 | \item Value of ``\texttt{order}'' field. 797 | \item Value of ``\texttt{month}'' field. 798 | \item Value of ``\texttt{title}'' field. 799 | \end{enumerate} 800 | 801 | By default, 802 | \begin{itemize} 803 | \item ``\texttt{bst.sort.entry.type}'' and ``\texttt{bst.sort.year}'' have 804 | zero, 805 | \item \textbf{``\texttt{absorder}''} and \textbf{``\texttt{order}''} 806 | fields are not assigned values because they are fields specific 807 | to ``\texttt{econ.bst}''. 808 | \end{itemize} 809 | Thus, references are sorted according to 810 | \begin{Frame} 811 | \begin{center} 812 | ``\texttt{author}'' $\rightarrow$ ``\texttt{year}'' $\rightarrow$ 813 | ``\texttt{month}'' $\rightarrow$ ``\texttt{title}'' 814 | \end{center} 815 | \end{Frame} 816 | That is, ``\texttt{author}'' is used as the primary key, ``\texttt{year}'' as 817 | the secondary key, ``\texttt{month}'' as the third key and ``\texttt{title}'' as 818 | the fourth key. 819 | 820 | \subsection{No sorting} 821 | 822 | If you want to list references in citation order, set non-zero value to 823 | ``\texttt{bst.no.sort}''. 824 | \begin{Frame} 825 | \begin{verbatim} 826 | FUNCTION {bst.no.sort} 827 | { #1 } 828 | \end{verbatim} 829 | \end{Frame} 830 | 831 | Note that when you set non-zero value to ``\texttt{bst.no.sort}'', you had better not 832 | use \verb|\bysame|. 833 | 834 | \subsection{Sort references by type} 835 | 836 | If you want to gather references according to their types (article, 837 | book, incollection, unpublished etc.), set non-zero value to 838 | ``\texttt{bst.sort.entry.type}''. 839 | \begin{Frame} 840 | \begin{verbatim} 841 | FUNCTION {bst.sort.entry.type} 842 | { #1 } 843 | \end{verbatim} 844 | \end{Frame} 845 | 846 | Order of listing by entry type is determined by function 847 | ``\texttt{bst.sort.entry.type.order}'' (by default, listed in alphabetical 848 | order, that is, article $\rightarrow$ book $\rightarrow$ booklet 849 | $\rightarrow$ comment $\rightarrow$ inbook $\rightarrow$ incollection 850 | $\rightarrow$ $\cdots$ $\rightarrow$ unpublished). See 851 | ``\texttt{bst.sort.entry.type.order}'' in ``\texttt{econ.bst}''. 852 | 853 | \subsection{Use ``\texttt{year}'' as the primary sorting key} 854 | 855 | When you create CV or a list of your papers, you may want to sort 856 | references in chronological order. If all papers are written soley by 857 | yourself, references are sorted in chronological order by default. 858 | However, there are co-writers and if you are not the first author, 859 | references are not sorted in chronological order because the author name 860 | is used as the primary sorting key by default. 861 | If you want to sort references in chronological order even when 862 | there are co-writers, set non-zero to ``\texttt{bst.sort.year}''. 863 | \begin{Frame} 864 | \begin{verbatim} 865 | FUNCTION {bst.sort.year} 866 | { #1 } 867 | \end{verbatim} 868 | \end{Frame} 869 | 870 | By default, old references are listed first. But if you set non-zero to 871 | ``\texttt{bst.reverse.year}'', new references are listed first. 872 | 873 | \subsection{Sorting by ``\texttt{absorder}'' field} 874 | 875 | If ``\texttt{absorder}'' is defined in bib file, 876 | ``\texttt{econ.bst}'' uses its content as the primary sorting key. 877 | You can set number 0--999 to ``\texttt{absorder}'' field. 878 | 879 | \begin{Frame} 880 | \begin{center} 881 | no absorder or absorder = 0 $\rightarrow$ absorder = 1 $\rightarrow$ absorder = 2 882 | $\rightarrow$ $\cdots$ $\rightarrow$ absorder = 999 883 | \end{center} 884 | \end{Frame} 885 | That is, reference with a small value of ``\texttt{absorder}'' is listed 886 | first. In this document (``\texttt{econ-example.bib}''), the reference 887 | with the key \citet{takeda10:_cge_analy_welfar_effec_trade} has 999 for 888 | ``\texttt{absorder}'' field and thus listed in the last. 889 | 890 | 891 | \subsubsection{Ignore ``\texttt{absorder}'' field} 892 | 893 | If you set some values for ``\texttt{absorder}'' fields in bib file, 894 | but if you want to ignore them, set non-zero to 895 | ``\texttt{bst.notuse.absorder.field}''. 896 | \begin{Frame} 897 | \begin{verbatim} 898 | FUNCTION {bst.notuse.absorder.field} 899 | { #1 } 900 | \end{verbatim} 901 | \end{Frame} 902 | 903 | \subsection{Sorting by ``\texttt{sortname}'' field} 904 | 905 | If ``\texttt{sortname}'' field is assigned a value, it is used for sorting 906 | instead of ``\texttt{author}'' or 907 | ``\texttt{editor}''\footnote{``\texttt{sortname}'' field is used in biblatex.}. 908 | 909 | For example, the first author name of the following bibliography entry starts 910 | with the letter ``d'' (d'Aspremont), so it is listed after the documents with 911 | author names that start with the letter ``c''. 912 | \begin{Frame} 913 | \begin{verbatim} 914 | @article{d'Aspremont-2004-BalancedBayesianMechanisms, 915 | title = {Balanced Bayesian Mechanisms}, 916 | author = {{d'Aspremont}, Claude and Cr{\'e}mer, Jacques and 917 | {G{\'e}rard-Varet}, Louis-Andr{\'e}}, 918 | year = 2004, 919 | volume = 115, 920 | pages = {385--396}, 921 | issn = {0022-0531}, 922 | doi = {10.1016/j.jet.2003.07.001}, 923 | journal = {Journal of Economic Theory}, 924 | number = 2, 925 | } 926 | \end{verbatim} 927 | \end{Frame} 928 | 929 | However, for the name ``d'Aspremont'', we should rather think that it starts 930 | with the letter ``A''. In this case, you had better to add the following 931 | ``\texttt{sortname}'' field 932 | \begin{Frame} 933 | \begin{verbatim} 934 | sortname = {Aspremont, Claude and Cr{\'e}mer, Jacques and 935 | {G{\'e}rard-Varet}, Louis-Andr{\'e}}, 936 | \end{verbatim} 937 | \end{Frame} 938 | 939 | Then, this entry is listed as author whose name begin with letter ``A''. The 940 | following three entries have sortname fields: 941 | \citet{d'Aspremont-2004-BalancedBayesianMechanisms}, 942 | \citet{d'Aspremont-2003-CorrelationIndependenceAndBayesian}, and 943 | \citet{d'Aspremont-1998-LinearInequalityMethodsTo}. 944 | 945 | \section{Misc.} 946 | 947 | \begin{itemize} 948 | \item Email: \verb||. 949 | \item ``\texttt{econ.bst}'' is available at \url{https://github.com/ShiroTakeda/econ-bst}. 950 | \end{itemize} 951 | \vspace*{1em} 952 | 953 | \citet{borgers95:_note_implem_stron_domin}, 954 | \citet{bergemann11:_ration}, 955 | \citet{takeda2015a}, 956 | \citet{Takeda2014a}, 957 | \citet{Biker-2007-unemployment}, 958 | \citet{Babiker-1999-JapaneseNuclearPower}, 959 | \citet{Babiker-1999-KyotoProtocoland}, 960 | \citet{Babiker2000525}, 961 | \citet{BabikerRutherford-2005-EconomicEffectsof}, 962 | \citet{goldin:katz:2011}, \citet{goldin:katz:2008}, \citet{goldin:katz:2000}. 963 | \citet{stakeda2019web}, 964 | \citet{Rivers-2005-CombiningTop-Downand}, 965 | \citet{WilsonMannOtsuki-2005-AssessingBenefitsof}, 966 | \citet{zhang2016Deep}, 967 | \citet{imbens2019Optimized}, 968 | \citet{essd-10-405-2018}, 969 | \citet{luthi08:_high}, 970 | \citet{doi:10.1175/2009BAMS2778.1}, 971 | \citet{d'Aspremont-2004-BalancedBayesianMechanisms}, 972 | \citet{d'Aspremont-2003-CorrelationIndependenceAndBayesian}, 973 | \citet{Chung-1999-ANoteOnMatsushima's}, 974 | \citet{d'Aspremont-1998-LinearInequalityMethodsTo}, 975 | \citet{myerson98:_exten_poiss_games_condor_jury_theor}. 976 | 977 | \vspace*{1em} 978 | 979 | \nocite{*} 980 | 981 | %%% BibTeX style. 982 | \bibliographystyle{econ} 983 | 984 | %% BibTeX database file. 985 | \addcontentsline{toc}{section}{References} 986 | \bibliography{econ-example} 987 | 988 | \end{document} 989 | 990 | %##################################################################### 991 | %######################### Document Ends ############################# 992 | %##################################################################### 993 | % -------------------- 994 | % Local Variables: 995 | % fill-column: 80 996 | % coding: utf-8 997 | % End: 998 | 999 | -------------------------------------------------------------------------------- /econ-example.bib: -------------------------------------------------------------------------------- 1 | % 2 | % Bibliography entries 3 | % 4 | 5 | %%%%%%%%%%%%%%%%%%%%%%%%%% 6 | % Article 7 | @Article{brezis93:_leapf_inter_compet, 8 | author = {Elise S. Brezis and Paul R. Krugman and Daniel Tsiddon}, 9 | title = {Leapfrogging in International Competition: A Theory of Cycles 10 | in National Technological Leadership}, 11 | journal = {American Economic Review}, 12 | year = 1993, 13 | volume = 83, 14 | number = 5, 15 | pages = {1211-1219}, 16 | month = {December}, 17 | } 18 | 19 | @Article{ishikawa94:_revis_stolp_samuel_rybcz_theor_produc_exter, 20 | author = {Jota Ishikawa}, 21 | title = {Revisiting the {Stolper}-{Samuelson} and the {Rybczynski} 22 | Theorems with Production Externalitities}, 23 | journal = {Canadian Journal of Economics}, 24 | year = 1994, 25 | volume = 27, 26 | pages = {101-111}, 27 | number = 1, 28 | url = {https://www.jstor.org/stable/135804}, 29 | doi = {10.2307/135804} 30 | } 31 | 32 | @article{Biker-2007-unemployment, 33 | author = {Mustafa H. Babiker and Richard S. Eckaus}, 34 | title = {Unemployment Effects of Climate Policy}, 35 | journal = {Environmental Science and Policy}, 36 | year = 2007, 37 | volume = 10, 38 | number = {7-8}, 39 | pages = {600-609}, 40 | doi = {10.1016/j.envsci.2007.05.002}, 41 | timestamp = {2010.08.28} 42 | } 43 | 44 | @article{Takeda2012a, 45 | author = {Takeda, Shiro and Tetsuya, Horie and Arimura, Toshi H.}, 46 | title = {A {CGE} Analysis of Border Adjustments under the Cap-and-Trade 47 | System: A Case Study of the {Japanese} Economy}, 48 | journal = {Climate Change Economics}, 49 | volume = 3, 50 | number = 1, 51 | doi = {10.1142/S2010007812500030}, 52 | year = 2012, 53 | url = 54 | {https://www.worldscientific.com/doi/abs/10.1142/S2010007812500030}, 55 | } 56 | 57 | @article{takeda06:_cge_analy_welfar_effec_trade, 58 | author = {Shiro Takeda}, 59 | title = {The Double Dividend from Carbon Regulations in {Japan}}, 60 | journal = {Journal of the Japanese and International Economies}, 61 | year = 2007, 62 | volume = 21, 63 | number = 3, 64 | pages = {336-364}, 65 | month = sep, 66 | doi = {10.1016/j.jjie.2006.01.002}, 67 | absorder = 999 68 | } 69 | 70 | @Article{yamazaki13:_japan, 71 | author = {Masato Yamazaki and Shiro Takeda}, 72 | title = {An assessment of nuclear power shutdown in {Japan} using the 73 | computable general equilibrium model}, 74 | journal = {Journal of Integrated Disaster Risk Management}, 75 | year = 2013, 76 | volume = 3, 77 | number = 1, 78 | pages = {36-55}, 79 | doi = {10.5595/idrim.2013.0055} 80 | } 81 | 82 | @Article{takeda10:_cge_analy_welfar_effec_trade, 83 | author = {Shiro Takeda}, 84 | title = {A {CGE} Analysis of the Welfare Effects of Trade Liberalization under Different 85 | Market Structures}, 86 | journal = {International Review of Applied Economics}, 87 | year = 2010, 88 | volume = 24, 89 | number = 1, 90 | absorder = 999, 91 | pages = {75-93}, 92 | doi = {10.1080/02692170903424307}, 93 | } 94 | 95 | @article{BabikerRutherford-2005-EconomicEffectsof, 96 | author = {Mustafa H. Babiker and Thomas F. Rutherford}, 97 | title = {The Economic Effects of Border Measures in Subglobal Climate 98 | Agreements}, 99 | journal = {The Energy Journal}, 100 | year = 2005, 101 | volume = 26, 102 | pages = {99-126}, 103 | number = 4, 104 | doi = {10.5547/ISSN0195-6574-EJ-Vol26-No4-6}, 105 | } 106 | 107 | @article{2009yamasue502165, 108 | author = {Eiji Yamasue and Ryota Minamino and Ichiro Daigo and Hideyuki 109 | Okumura and Keiichi N Ishihara}, 110 | title = {Evaluation of total materials requirement for the recycling of 111 | elements and materials (urban ore {TMR}) from end-of-life 112 | electric home appliances}, 113 | journal = {Materials Transactions}, 114 | year = 2009, 115 | volume = 50, 116 | pages = {2165--2172}, 117 | number = 9, 118 | issn = 13459678, 119 | order = 3, 120 | pdf = {2009yamasue502165.pdf}, 121 | publisher = {Japan Institute of Metals}, 122 | url = {https://ci.nii.ac.jp/naid/40016713752/}, 123 | doi = {10.2320/matertrans.MAW200908} 124 | } 125 | 126 | @article{2007yamasue482353, 127 | author = {Eiji Yamasue and Kenichi Nakajima and Ichiro Daigo and Seiji 128 | Hashimoto and Hideyuki Okumura and Keiichi N. Ishihara}, 129 | title = {Evaluation of the Potential Amounts of Dissipated Rare Metals 130 | from WEEE in {Japan}}, 131 | journal = {Materials Transactions}, 132 | year = 2007, 133 | volume = 48, 134 | pages = {2353--2357}, 135 | number = 9, 136 | issn = 13459678, 137 | pdf = {2007yamasue482353.pdf}, 138 | publisher = {Japan Institute of Metals}, 139 | url = {https://ci.nii.ac.jp/naid/10019853407/}, 140 | doi = {10.2320/matertrans.MAW200781} 141 | } 142 | 143 | @article{Babiker2000525, 144 | author = {Mustafa H. Babiker and John M. Reilly and Henry D. Jacoby}, 145 | title = {The {Kyoto} Protocol and Developing Countries}, 146 | journal = {Energy Policy}, 147 | year = 2000, 148 | volume = 28, 149 | pages = {525--536}, 150 | number = 8, 151 | doi = {10.1016/S0301-4215(00)00033-1}, 152 | issn = {0301-4215}, 153 | keywords = {Climate change} 154 | } 155 | 156 | @article{Parry1997, 157 | title = {Environmental taxes and quotas in the presence of distorting 158 | taxes in factor markets}, 159 | journal = {Resource and Energy Economics}, 160 | volume = {19}, 161 | number = {3}, 162 | pages = {203-220}, 163 | year = {1997}, 164 | issn = {0928-7655}, 165 | doi = {10.1016/S0928-7655(96)00012-7}, 166 | url = 167 | {https://www.sciencedirect.com/science/article/pii/S0928765596000127}, 168 | author = {Parry, Ian W. H.}, 169 | keywords = {Environmental tax, Environmental quota, Pre-existing labor 170 | tax, General equilibrium welfare effect}, 171 | abstract = {Environmental quotas tend to compound the welfare cost of 172 | pre-existing tax distortions in the labor market. Under 173 | plausible parameters, this source of welfare loss can easily 174 | be large enough to outweigh the entire partial equilibrium 175 | welfare gain from the quota. Environmental taxes induce the 176 | same interaction effect, however they also raise government 177 | revenues. If the revenues are used to reduce distortionary 178 | taxes, then most of this interaction effect can be 179 | offset. Therefore, revenue-raising can be a necessary 180 | condition for environmental policies to increase welfare.} 181 | } 182 | 183 | @Article{bergemann11:_ration, 184 | title = {Rationalizable implementation}, 185 | journal = {Journal of Economic Theory}, 186 | volume = {146}, 187 | number = {3}, 188 | pages = {1253-1274}, 189 | year = {2011}, 190 | issn = {0022-0531}, 191 | doi = {10.1016/j.jet.2010.12.011}, 192 | url = 193 | {https://www.sciencedirect.com/science/article/pii/S0022053111000044}, 194 | author = {Dirk Bergemann and Stephen Morris and Olivier Tercieux}, 195 | keywords = {Implementation, Complete information, Rationalizability, 196 | Maskin monotonicity, Robust mechanism design, Robust 197 | implementation}, 198 | abstract = {We consider the implementation of social choice functions 199 | under complete information in rationalizable strategies. A 200 | strict version of the monotonicity condition introduced by 201 | Maskin is necessary under the solution concept of 202 | rationalizability. Assuming the social choice function is 203 | responsive, i.e. in distinct states it selects distinct 204 | outcomes, we show that strict Maskin monotonicity is also 205 | sufficient under a mild “no worst alternative” condition. In 206 | particular, no economic condition is required. We discuss how 207 | our results extend when the social choice function is not 208 | responsive.} 209 | } 210 | 211 | @article{goldin:katz:2000, 212 | author = {Claudia Goldin and Lawrence F. Katz}, 213 | title = {Education and Income in the Early Twentieth Century: Evidence 214 | from the Prairies}, 215 | journal = {Journal of Economic History}, 216 | year = {2000}, 217 | volume = {60}, 218 | number = {3}, 219 | pages = {782-818}, 220 | doi = {10.1017/S0022050700025766} 221 | } 222 | 223 | @article{10.1257/aer.20161492, 224 | Author = {Ray, Debraj and Robson, Arthur}, 225 | Title = {Certified Random: A New Order for Coauthorship}, 226 | Journal = {American Economic Review}, 227 | Volume = {108}, 228 | Number = {2}, 229 | Year = {2018}, 230 | Month = {February}, 231 | Pages = {489-520}, 232 | DOI = {10.1257/aer.20161492}, 233 | URL = {https://www.aeaweb.org/articles?id=10.1257/aer.20161492}, 234 | nameorder = {random} 235 | } 236 | 237 | @article{10.1257/aer.20170619, 238 | Author = {Giorcelli, Michela}, 239 | Title = {The Long-Term Effects of Management and Technology Transfers}, 240 | Journal = {American Economic Review}, 241 | Volume = {109}, 242 | Number = {1}, 243 | Year = {2019}, 244 | Month = {January}, 245 | Pages = {121-52}, 246 | DOI = {10.1257/aer.20170619}, 247 | URL = {https://www.aeaweb.org/articles?id=10.1257/aer.20170619} 248 | } 249 | 250 | @article{10.1257/pol.2.1.155, 251 | Author = {Mankiw, N. Gregory and Weinzierl, Matthew}, 252 | Title = {The Optimal Taxation of Height: A Case Study of Utilitarian 253 | Income Redistribution}, 254 | Journal = {American Economic Journal: Economic Policy}, 255 | Volume = {2}, 256 | Number = {1}, 257 | Year = {2010}, 258 | Month = {February}, 259 | Pages = {155-76}, 260 | DOI = {10.1257/pol.2.1.155}, 261 | URL = {https://www.aeaweb.org/articles?id=10.1257/pol.2.1.155} 262 | } 263 | 264 | @article{10.1257/aer.100.3.763, 265 | Author = {Romer, Christina D. and Romer, David H.}, 266 | Title = {The Macroeconomic Effects of Tax Changes: Estimates Based on a 267 | New Measure of Fiscal Shocks}, 268 | Journal = {American Economic Review}, 269 | Volume = {100}, 270 | Number = {3}, 271 | Year = {2010}, 272 | Month = {June}, 273 | Pages = {763-801}, 274 | DOI = {10.1257/aer.100.3.763}, 275 | URL = {https://www.aeaweb.org/articles?id=10.1257/aer.100.3.763} 276 | } 277 | 278 | @Article{Takeda2014a, 279 | author = {Takeda, Shiro and Arimura, Toshi H. and Tamechika, Hanae and 280 | Fischer, Carolyn and Fox, Alan K.}, 281 | title = {Output-based allocation of emissions permits for mitigating 282 | the leakage and competitiveness issues for the {Japanese} 283 | economy}, 284 | journal = {Environmental Economics and Policy Studies}, 285 | year = {2014}, 286 | month = {Jan}, 287 | day = {01}, 288 | volume = {16}, 289 | number = {1}, 290 | pages = {89--110}, 291 | issn = {1867-383X}, 292 | doi = {10.1007/s10018-013-0072-8}, 293 | } 294 | 295 | @Article{Takeda2019a, 296 | author = {Takeda, Shiro and Arimura, Toshi H. and Sugino, Makoto}, 297 | title = {Labor Market Distortions and Welfare-Decreasing International 298 | Emissions Trading}, 299 | journal = {Environmental and Resource Economics}, 300 | volume = {74}, 301 | number = {1}, 302 | pages = {271-293}, 303 | year = {2019}, 304 | month = Jan, 305 | day = {17}, 306 | issn = {1573-1502}, 307 | doi = {10.1007/s10640-018-00317-4}, 308 | } 309 | 310 | @article{doi:10.1175/2009BAMS2778.1, 311 | author = {Meehl, Gerald A. and Goddard, Lisa and Murphy, James and 312 | Stouffer, Ronald J. and Boer, George and Danabasoglu, Gokhan 313 | and Dixon, Keith and Giorgetta, Marco A. and Greene, Arthur 314 | M. and Hawkins, Ed and Hegerl, Gabriele and Karoly, David and 315 | Keenlyside, Noel and Kimoto, Masahide and Kirtman, Ben and 316 | Navarra, Antonio and Pulwarty, Roger and Smith, Doug and 317 | Stammer, Detlef and Stockdale, Timothy}, 318 | title = {Decadal Prediction}, 319 | journal = {Bulletin of the American Meteorological Society}, 320 | volume = {90}, 321 | number = {10}, 322 | pages = {1467-1486}, 323 | year = {2009}, 324 | doi = {10.1175/2009BAMS2778.1}, 325 | URL = {https://doi.org/10.1175/2009BAMS2778.1}, 326 | eprint = {https://doi.org/10.1175/2009BAMS2778.1}, 327 | } 328 | 329 | @Article{luthi08:_high, 330 | author = {Luthi, Dieter and Le Floch, Martine and Bereiter, Bernhard and 331 | Blunier, Thomas and Barnola, Jean-Marc and Siegenthaler, Urs 332 | and Raynaud, Dominique and Jouzel, Jean and Fischer, Hubertus 333 | and Kawamura, Kenji and Stocker, Thomas F.}, 334 | title = {High-resolution carbon dioxide concentration record 335 | 650,000-800,000 years before present}, 336 | journal = {Nature}, 337 | year = 2008, 338 | volume = 453, 339 | number = 7193, 340 | pages = {379-82}, 341 | month = {May}, 342 | DOI = {10.1038/nature06949} 343 | } 344 | 345 | @Article{essd-10-405-2018, 346 | author = {Le Qu\'er\'e, C. 347 | and Andrew, R. M. 348 | and Friedlingstein, P. 349 | and Sitch, S. 350 | and Pongratz, J. 351 | and Manning, A. C. 352 | and Korsbakken, J. I. 353 | and Peters, G. P. 354 | and Canadell, J. G. 355 | and Jackson, R. B. 356 | and Boden, T. A. 357 | and Tans, P. P. 358 | and Andrews, O. D. 359 | and Arora, V. K. 360 | and Bakker, D. C. E. 361 | and Barbero, L. 362 | and Becker, M. 363 | and Betts, R. A. 364 | and Bopp, L. 365 | and Chevallier, F. 366 | and Chini, L. P. 367 | and Ciais, P. 368 | and Cosca, C. E. 369 | and Cross, J. 370 | and Currie, K. 371 | and Gasser, T. 372 | and Harris, I. 373 | and Hauck, J. 374 | and Haverd, V. 375 | and Houghton, R. A. 376 | and Hunt, C. W. 377 | and Hurtt, G. 378 | and Ilyina, T. 379 | and Jain, A. K. 380 | and Kato, E. 381 | and Kautz, M. 382 | and Keeling, R. F. 383 | and Klein Goldewijk, K. 384 | and K\"ortzinger, A. 385 | and Landsch\"utzer, P. 386 | and Lef\`evre, N. 387 | and Lenton, A. 388 | and Lienert, S. 389 | and Lima, I. 390 | and Lombardozzi, D. 391 | and Metzl, N. 392 | and Millero, F. 393 | and Monteiro, P. M. S. 394 | and Munro, D. R. 395 | and Nabel, J. E. M. S. 396 | and Nakaoka, S.-I. 397 | and Nojiri, Y. 398 | and Padin, X. A. 399 | and Peregon, A. 400 | and Pfeil, B. 401 | and Pierrot, D. 402 | and Poulter, B. 403 | and Rehder, G. 404 | and Reimer, J. 405 | and R\"odenbeck, C. 406 | and Schwinger, J. 407 | and S\'ef\'erian, R. 408 | and Skjelvan, I. 409 | and Stocker, B. D. 410 | and Tian, H. 411 | and Tilbrook, B. 412 | and Tubiello, F. N. 413 | and van der Laan-Luijkx, I. T. 414 | and van der Werf, G. R. 415 | and van Heuven, S. 416 | and Viovy, N. 417 | and Vuichard, N. 418 | and Walker, A. P. 419 | and Watson, A. J. 420 | and Wiltshire, A. J. 421 | and Zaehle, S. 422 | and Zhu, D.}, 423 | title = {Global Carbon Budget 2017}, 424 | journal = {Earth System Science Data}, 425 | volume = {10}, 426 | year = {2018}, 427 | number = {1}, 428 | pages = {405--448}, 429 | url = {https://www.earth-syst-sci-data.net/10/405/2018/}, 430 | doi = {10.5194/essd-10-405-2018} 431 | } 432 | 433 | @article{Rivers-2005-CombiningTop-Downand, 434 | author = {Rivers, Nic and Jaccard, Mark}, 435 | journal = {The Energy Journal}, 436 | pages = {83--107}, 437 | title = {Combining Top-Down and Bottom-Up Approaches To Energy-Economy 438 | Modeling Using Discrete Choice Methods}, 439 | volume = 26, 440 | doi = {10.5547/ISSN0195-6574-EJ-Vol26-No1-4}, 441 | year = 2005 442 | } 443 | 444 | @article{WilsonMannOtsuki-2005-AssessingBenefitsof, 445 | author = {Wilson, John S. and Mann, Catherine L. and Otsuki, Tsunehiro}, 446 | journal = {The World Economy}, 447 | number = {6}, 448 | pages = {841--871}, 449 | title = {{Assessing the Benefits of Trade Facilitation: A Global 450 | Perspective}}, 451 | doi = {10.1111/j.1467-9701.2005.00709.x}, 452 | volume = {28}, 453 | year = {2005} 454 | } 455 | 456 | @article{imbens2019Optimized, 457 | title = {Optimized {{Regression Discontinuity Designs}}}, 458 | volume = {101}, 459 | issn = {0034-6535, 1530-9142}, 460 | language = {en}, 461 | number = {2}, 462 | urldate = {2019-07-27}, 463 | journal = {Review of Economics and Statistics}, 464 | doi = {10.1162/rest_a_00793}, 465 | url = {https://www.mitpressjournals.org/doi/abs/10.1162/rest_a_00793}, 466 | author = {Imbens, Guido and Wager, Stefan}, 467 | month = may, 468 | year = {2019}, 469 | keywords = {unread}, 470 | pages = {264-278} 471 | } 472 | 473 | @ARTICLE{Attwood06:SexedUp_art, 474 | title = {Sexed Up: Theorizing the Sexualization of Culture}, 475 | author = {Attwood, Feona}, 476 | journal = {Sexualities}, 477 | volume = 9, 478 | number = 1, 479 | pages = {77--94}, 480 | month = feb, 481 | year = 2006 482 | } 483 | 484 | @article{Chung-1999-ANoteOnMatsushima's, 485 | title = {A Note on {Matsushima}'s Regularity Condition}, 486 | author = {Chung, Kim-Sau}, 487 | year = 1999, 488 | volume = 87, 489 | pages = {429--433}, 490 | issn = {0022-0531}, 491 | doi = {10.1006/jeth.1999.2545}, 492 | abstract = {This note first uses a simple example to show that 493 | H. Matsushima's (1991, J. Econ. Theory54, 198\textendash 203) 494 | regularity condition, to the contrary of his claim, actually 495 | does not imply C. d'Aspremont and L.-A. G\'erard-Varet's 496 | (1979, J. Public Econ.11, 25\textendash 45) compatibility 497 | condition. It then proves a stronger version of Matsushima's 498 | proposition, namely that efficient public decision rules can 499 | be truthfully implemented with budget-balancing mechanisms 500 | under the weak regularity condition. Journal of Economic 501 | Literature Classification Numbers: C72, D82.}, 502 | journal = {Journal of Economic Theory}, 503 | number = 2 504 | } 505 | 506 | @article{d'Aspremont-1998-LinearInequalityMethodsTo, 507 | title = {Linear Inequality Methods to Enforce Partnerships under 508 | Uncertainty: {{An}} Overview}, 509 | author = {{d'Aspremont}, Claude and {G{\'e}rard-Varet}, Louis-Andr{\'e}}, 510 | year = 1998, 511 | volume = 25, 512 | pages = {311--336}, 513 | issn = {0899-8256}, 514 | doi = {10.1006/game.1998.0675}, 515 | abstract = {We review different (generic) conditions on stochastic outcome 516 | functions to enforce either efficient or nearly efficient 517 | partnerships. Their logical relationship is explored. Two 518 | kinds of conditions are considered. However, the property for 519 | an action profile to be ``compatible'' plays a crucial role in 520 | both kinds. Also, two kinds of enforcement mechanisms are 521 | considered: enforcement through utility transfers and 522 | enforcement through repetition.Journal of Economic 523 | LiteratureClassification Numbers: D2, D7.}, 524 | journal = {Games and Economic Behavior}, 525 | keywords = {folk theorem,mechanism design,partnership,team moral hazard}, 526 | number = 2, 527 | sortname = {Aspremont, Claude and {G{\'e}rard-Varet}, Louis-Andr{\'e}}, 528 | } 529 | 530 | @article{d'Aspremont-2003-CorrelationIndependenceAndBayesian, 531 | title = {Correlation, Independence, and {{Bayesian}} Incentives}, 532 | author = {{d'Aspremont}, Claude and Cr{\'e}mer, Jacques and 533 | {G{\'e}rard-Varet}, Louis-Andr{\'e}}, 534 | year = 2003, 535 | month = oct, 536 | volume = 21, 537 | pages = {281--310}, 538 | issn = {0176-1714, 1432-217X}, 539 | doi = {10.1007/s00355-003-0260-8}, 540 | journal = {Social Choice and Welfare}, 541 | number = 2, 542 | sortname = {Aspremont, Claude and Cr{\'e}mer, Jacques and 543 | {G{\'e}rard-Varet}, Louis-Andr{\'e}}, 544 | } 545 | 546 | @article{d'Aspremont-2004-BalancedBayesianMechanisms, 547 | title = {Balanced {Bayesian} Mechanisms}, 548 | author = {{d'Aspremont}, Claude and Cr{\'e}mer, Jacques and 549 | {G{\'e}rard-Varet}, Louis-Andr{\'e}}, 550 | year = 2004, 551 | volume = 115, 552 | pages = {385--396}, 553 | issn = {0022-0531}, 554 | doi = {10.1016/j.jet.2003.07.001}, 555 | abstract = {In the transferable utility case, a number of authors have 556 | identified conditions on beliefs that guarantee the existence 557 | of Bayesian incentive compatible mechanisms with balanced 558 | transfers. We present a new, easy to interpret, condition and 559 | we show that it is (strictly) more general than all the other 560 | conditions found in the literature. We also study conditions 561 | guaranteeing the Bayesian implementability of all social 562 | decision rules with balanced budget mechanisms.}, 563 | journal = {Journal of Economic Theory}, 564 | keywords = {Bayesian implementation,Bayesian incentive 565 | compatibility,Mechanism design}, 566 | number = 2, 567 | sortname = {Aspremont, Claude and Cr{\'e}mer, Jacques and 568 | {G{\'e}rard-Varet}, Louis-Andr{\'e}}, 569 | } 570 | 571 | @article{myerson98:_exten_poiss_games_condor_jury_theor, 572 | title = {Extended Poisson Games and the Condorcet Jury Theorem}, 573 | journal = {Games and Economic Behavior}, 574 | volume = 25, 575 | number = 1, 576 | pages = {111-131}, 577 | year = 1998, 578 | issn = {0899-8256}, 579 | doi = {10.1006/game.1997.0610}, 580 | url = 581 | {https://www.sciencedirect.com/science/article/pii/S0899825697906102}, 582 | author = {Roger B. Myerson}, 583 | } 584 | 585 | %%%%%%%%%%%%%%%%%%%%%%%%%% 586 | % Book 587 | @Book{krugman91:_geogr_trade, 588 | author = {Paul R. Krugman}, 589 | title = {Geography and Trade}, 590 | publisher = {MIT Press}, 591 | year = 1991, 592 | address = {Cambridge, MA} 593 | } 594 | 595 | @book{helpman91:_inter_trade_trade_polic, 596 | editor = {Elhanan Helpman and Assaf Razin}, 597 | title = {International Trade and Trade Policy}, 598 | publisher = {MIT Press}, 599 | year = 1991, 600 | address = {Cambridge, MA} 601 | } 602 | 603 | @Book{fujita99jp:_spatial_econom, 604 | author = {Masahisa Fujita and Paul R. Krugman and Anthony J. Venables}, 605 | title = {The Spatial Economy}, 606 | publisher = {MIT Press}, 607 | address = {Cambridge, MA}, 608 | year = 1999, 609 | doi = {10.7551/mitpress/6389.001.0001} 610 | } 611 | 612 | @Book{Ryza15:_advan_analy_spark_patter_learn_data_scale, 613 | author = {Sandy Ryza and Uri Laserson and Sean Owen and Josh Wills}, 614 | title = {Advanced Analytics with Spark Patterns for Learning from Data at Scale}, 615 | publisher = {O'reilly \& Associates Inc}, 616 | year = 2015, 617 | } 618 | 619 | @book{goldin:katz:2008, 620 | author = {Claudia Goldin and Lawrence F. Katz}, 621 | title = {The Race between Education and Technology}, 622 | publisher = {The Belknap Press of Harvard University Press}, 623 | address = {Cambridge, MA}, 624 | year = {2008} 625 | } 626 | 627 | @Book{kusuoka06:_advan_mathem_econom, 628 | editor = {Kusuoka, Shigeo and Yamazaki, Akira}, 629 | title = {Advances in Mathematical Economics}, 630 | publisher = {Springer Tokyo}, 631 | year = 2006, 632 | volume = 8, 633 | doi = {10.1007/4-431-30899-7}, 634 | address = {New York} 635 | } 636 | 637 | @book{jones84:_handb_inter_econom, 638 | editor = {Ronald W. Jones and Peter B. Kenen}, 639 | title = {Handbook of International Economics}, 640 | publisher = {Elsevier}, 641 | year = 1984, 642 | volume = 1, 643 | address = {Amsterdam} 644 | } 645 | 646 | @book{jones85:_handb_inter_econom, 647 | editor = {Ronald W. Jones and Peter B. Kenen}, 648 | title = {Handbook of International Economics}, 649 | publisher = {Elsevier}, 650 | year = 1985, 651 | volume = 2, 652 | address = {Amsterdam} 653 | } 654 | 655 | @book{jones97:_handb_inter_econom, 656 | title = {Handbook of International Economics}, 657 | editor = {Jones, Ronald W. and Grossman, Gene M. and Kenen, Peter B. 658 | and Rogoff, Kenneth}, 659 | volume = 3, 660 | year = 1997, 661 | publisher = {Elsevier}, 662 | address = {Amsterdam} 663 | } 664 | 665 | @book{Attwood09:Mainstreaming, 666 | title = {Mainstreaming Sex: the Sexualization of Western Culture}, 667 | editor = {Feona Attwood}, 668 | publisher = {I.~B. Tauris}, 669 | year = 2009, 670 | } 671 | 672 | @book{attwood2010porn, 673 | title = {Porn.com: Making Sense of Online Pornography}, 674 | editor = {Feona Attwood}, 675 | year = 2010, 676 | publisher = {Peter Lang} 677 | } 678 | 679 | @book{Black1958, 680 | author = {Black, Duncan}, 681 | publisher = {Cambridge University Press}, 682 | title = {The theory of committees and elections}, 683 | year = 1958, 684 | address = {Cambridge}, 685 | doi = {10.1007/978-94-009-4225-7}, 686 | isbn = 9780521141208, 687 | } 688 | 689 | %%%%%%%%%%%%%%%%%%%%%%%%%% 690 | % Incollection 691 | @InCollection{krugman91:_is_bilat_bad, 692 | author = {Paul R. Krugman}, 693 | title = {Is Bilateralism Bad?}, 694 | booktitle = {International Trade and Trade Policy}, 695 | pages = {9-23}, 696 | publisher = {MIT Press}, 697 | year = 1991, 698 | editor = {Elhanan Helpman and Assaf Razin}, 699 | address = {Cambridge, MA} 700 | } 701 | 702 | @incollection{lucas76:_econom_polic_evaluat, 703 | author = {Lucas, Jr., Robert E.}, 704 | year = 1976, 705 | title = {Econometric Policy Evaluation: A Critique}, 706 | booktitle = {The {Phillips} Curve and Labor Markets}, 707 | pages = {19-46}, 708 | editors = {Karl Brunner and Allan H. Meltzer}, 709 | volume = 1, 710 | series = {Carnegie Rochester Conference Series on Public Policy}, 711 | publisher = {North-Holland}, 712 | address = {Amsterdam}, 713 | doi = {10.1016/S0167-2231(76)80003-6}, 714 | } 715 | 716 | @incollection{DeGorter2002, 717 | author = {De Gorter, Harry and Swinnen, Johan}, 718 | booktitle = {Handbook of Agricuultural Economics}, 719 | chapter = {36}, 720 | doi = {10.1016/S1574-0072(02)10023-5}, 721 | editor = {Gardner, B. and Rausser, G.}, 722 | isbn = {9780444510792}, 723 | issn = {15740072}, 724 | keywords = {Q18,collective action,commodity policy,developmental 725 | paradox,instrument choice,lobbying,politician-voter,public 726 | goods,rent-seeking,revealed preference,status quo bias,trade 727 | bias}, 728 | pages = {1893--1943}, 729 | publisher = {Elsevier Science B.V.}, 730 | title = {Political Economy of Agricultural Policy}, 731 | url = 732 | {https://www.sciencedirect.com/science/article/pii/S1574007202100235}, 733 | volume = {2}, 734 | address = {Amsterdam}, 735 | year = {2002} 736 | } 737 | 738 | @InCollection{borgers95:_note_implem_stron_domin, 739 | author = {Tilman Borgers}, 740 | title = {A Note on Implementation and Strong Dominance}, 741 | booktitle = {Social Choice, Welfare, and Ethics: Proceedings of the Eighth 742 | International Symposium in Economic Theory and Econometrics}, 743 | publisher = {Cambridge University Press}, 744 | address = {Cambridge, UK.}, 745 | year = 1995, 746 | editor = {William A. Barnett and Herve Moulin and Maurice Salles and 747 | Norman J. Schofield}, 748 | pages = {277-287} 749 | } 750 | 751 | @incollection{goldin:katz:2011, 752 | author = {Claudia Goldin and Lawrence F. Katz}, 753 | title = {Mass Secondary Schooling and the State: The Role of State Compulsion in the High 754 | School Movement}, 755 | booktitle = {Understanding Long-Run Economic Growth: Essays in Honor of Kenneth L. Sokoloff}, 756 | publisher = {University of Chicago Press}, 757 | address = {Chicago, IL}, 758 | year = {2011}, 759 | editor = {D. Costa and N. Lamoreaux}, 760 | chapter = {9}, 761 | pages = {275-310}, 762 | } 763 | 764 | @incollection{balistreri20131513, 765 | title = {Computing General Equilibrium Theories of Monopolistic 766 | Competition and Heterogeneous Firms}, 767 | editor = {Peter B. Dixon and Dale W. Jorgenson}, 768 | chapter = {23}, 769 | publisher = {Elsevier}, 770 | volume = {1}, 771 | pages = {1513-1570}, 772 | year = {2013}, 773 | booktitle = {Handbook of Computable General Equilibrium Modeling SET, 774 | Vols. 1A and 1B}, 775 | issn = {2211-6885}, 776 | doi = {10.1016/B978-0-444-59568-3.00023-7}, 777 | url = 778 | {https://www.sciencedirect.com/science/article/pii/B9780444595683000237}, 779 | author = {Edward J. Balistreri and Thomas F. Rutherford}, 780 | keywords = {New trade theory, computable general equilibrium, 781 | intraindustry trade, trade policy, climate policy}, 782 | abstract = {This chapter considers alternatives to the Armington 783 | formulation of international trade found in most computable 784 | general equilibrium (CGE) models. International trade 785 | structures consistent with the monopolistic competition models 786 | suggested by Krugman (1980) and Melitz (2003) are presented in 787 | a computational setting. The Melitz structure of heterogeneous 788 | firms is particularly appealing given its consistency with 789 | micro-level findings on firm sizes and export behavior. We 790 | broaden the accessibility of these advanced trade theories for 791 | CGE modelers, and strengthen the link between contemporary CGE 792 | analysis and the broader trade community. Small-scale examples 793 | of all three theories (Armington, Krugman and Melitz) are 794 | introduced under a unified treatment. This is helpful in 795 | translating the advanced theories into an environment that is 796 | more familiar to CGE modelers. It is also helpful in showing 797 | how the different approaches affect outcomes, in a relatively 798 | transparent setting. Moving to an applied setting, we offer 799 | our approach to calibration and computation of models that 800 | include the Melitz heterogeneous firms structure. Our 801 | applications include an analysis of economic integration and 802 | subglobal climate policy in a model calibrated to the Global 803 | Trade Analysis Project (GTAP) data. We do find that the 804 | heterogeneous firms structure matters for conclusions drawn 805 | from empirical CGE analysis. In our analysis of economic 806 | integration we find endogenous entry leading to important 807 | variety effects. We also find important productivity effects 808 | related to the competitive selection of more productive 809 | firms. In our examination of subglobal climate policy we see 810 | substantial trade diversion in the Melitz structure. This 811 | exacerbates the problem of carbon leakage and impacts the 812 | emissions yields from carbon-based tariffs.} 813 | } 814 | 815 | @incollection{Asakawa-2021-DoubleDividendCarbonTax, 816 | title = {Double Dividend of the Carbon Tax in {Japan}: Can We Increase 817 | Public Support for Carbon Pricing?}, 818 | booktitle = {Carbon Pricing in Japan}, 819 | author = {Asakawa, Kenji and Kimoto, Kouichi and Takeda, Shiro and 820 | Arimura, Toshi H.}, 821 | editor = {Arimura, Toshi H. and Matsumoto, Shigeru}, 822 | year = {2021}, 823 | pages = {235--255}, 824 | publisher = {Springer Singapore}, 825 | address = {Singapore}, 826 | doi = {10.1007/978-981-15-6964-7_13}, 827 | isbn = {978-981-15-6963-0 978-981-15-6964-7} 828 | } 829 | 830 | %%%%%%%%%%%%%%%%%%%%%%%%%% 831 | % Unpublished 832 | 833 | @unpublished{ishikawa03:_green_gas_emiss_contr_open_econom, 834 | author = {Jota Ishikawa and Kazuharu Kiyono}, 835 | title = {Greenhouse-Gas Emission Controls in an Open Economy}, 836 | year = 2003, 837 | month = nov, 838 | note = {{COE-RES} Discussion Paper Series, Center of Excellence 839 | Project, Graduate School of Economics and Institute of 840 | Economics Research, Hitotsubashi University} 841 | } 842 | 843 | @unpublished{rutherford00:_gtapin_gtap_eg, 844 | author = {Thomas F. Rutherford and Sergey V. Paltsev}, 845 | title = {{GTAPinGAMS} and {GTAP-EG}: Global Datasets for Economic 846 | Research and Illustrative Models}, 847 | month = sep, 848 | year = 2000, 849 | url = {https://www.mpsge.org/gtap5/index.html}, 850 | access = {29th June, 2013}, 851 | note = {Working Paper, University of Colorad, Department of Economics} 852 | } 853 | 854 | @unpublished{takeda2015a, 855 | author = {Takeda, Shiro and Arimura, Toshi H. and Sugino, Makoto}, 856 | title = {Labor Market Distortions and Welfare-Decreasing International 857 | Emissions Trading}, 858 | url = 859 | {https://www.waseda.jp/fpse/winpec/assets/uploads/2015/06/No.E1422Takeda_Arimura_Sugino.pdf}, 860 | year = {2015}, 861 | note = {WINPEC Working Paper Series No.E1422, March 2015} 862 | } 863 | 864 | @unpublished{Babiker-1999-KyotoProtocoland, 865 | author = {Mustafa H. Babiker and John M. Reilly and Henry D. Jacoby}, 866 | title = {The {Kyoto} Protocol and Developing Countries}, 867 | note = {MIT Joint Program on the Science and Policy of Global Change (Report No.56)}, 868 | month = {October}, 869 | year = 1999, 870 | owner = {stakeda.lab}, 871 | timestamp = {2010.04.08} 872 | } 873 | 874 | @UNPUBLISHED{Babiker-1999-JapaneseNuclearPower, 875 | author = {Mustafa H. Babiker and John M. Reilly and A. Denny Ellerman}, 876 | title = {{Japanese} Nuclear Power and the {Kyoto} Agreement}, 877 | note = {The MIT Joint Program on the Science and Policy of Global Change (Report No. 51)}, 878 | month = {August}, 879 | year = {1999}, 880 | owner = {stakeda.lab}, 881 | timestamp = {2010.03.26} 882 | } 883 | 884 | @UNPUBLISHED{RePEc:nbr:nberwo:4269, 885 | title = {A Simple Theory of Multinational Corporations and Trade with a 886 | Trade-Off Between Proximity and Concentration}, 887 | author = {Brainard, S. Lael}, 888 | year = {1993}, 889 | note = {NBER Working Paper No. 4269}, 890 | institution = {National Bureau of Economic Research, Inc}, 891 | type = {NBER Working Papers}, 892 | number = {4269}, 893 | abstract = {This paper develops a two-sector, two-country model, where 894 | firms in a differentiated products sector choose between 895 | exporting and multinational expansion as alternative modes of 896 | foreign market penetration, based on a trade-off between 897 | proximity and concentration advantages. The differentiated 898 | sector is characterized by multi-stage production, with 899 | increasing returns at the corporate level associated with some 900 | activity such as R&D, scale economies at the plant level, and 901 | a variable transport cost that rises with distance. A pure 902 | multinational equilibrium, where two-way horizontal expansion 903 | across borders completely supplants two-way trade in 904 | differentiated products, is possible even in the absence of 905 | factor proportion differences. It is more likely the greater 906 | are transport costs relative to fixed plant costs, and the 907 | greater are increasing returns at the corporate level relative 908 | to the plant level. The model also establishes conditions for 909 | a mixed equilibrium, in which national and multinational firms 910 | coexist.}, 911 | url = {https://EconPapers.repec.org/RePEc:nbr:nberwo:4269} 912 | } 913 | 914 | @Unpublished{vohra18:_maxim_farsig_stabl_set, 915 | author = {Rajiv Vohra and Debraj Ray}, 916 | title = {Maximality in The Farsighted Stable Set}, 917 | nameorder = {random}, 918 | year = 2018, 919 | url = 920 | {https://debrajray.com/wp-content/uploads/2018/01/RayVohraHistDep.pdf}, 921 | note = {September, 2018}, 922 | } 923 | 924 | @Unpublished{saito17:_effec_immig_japan, 925 | author = {Saito, Muneyuki and Kato, Shinya and Takeda, Shiro}, 926 | title = {Effects of Immigration in {Japan}: A Computable General 927 | Equilibrium Assessment}, 928 | url = {https://ssrn.com/abstract=2782708}, 929 | year = 2017 930 | } 931 | 932 | @Unpublished{takeda10:_region_effec_trade_liber_japan, 933 | author = {Takeda, Shiro and Kanemi, Ban}, 934 | title = {Regional Effects of Trade Liberalization in {Japan}: A {CGE} 935 | Analysis Based on an Interregional Input-Output Table}, 936 | url = 937 | {https://doi.org/10.2139/ssrn.1886019}, 938 | year = 2010 939 | } 940 | 941 | %%%%%%%%%%%%%%%%%%%%%%%%%% 942 | % inbook 943 | @InBook{wong95:_inter_trade_goods_factor_mobil_, 944 | author = {{Kar-yiu} Wong}, 945 | title = {International Trade in Goods and Factor Mobility}, 946 | chapter = 2, 947 | publisher = {MIT Press}, 948 | year = 1995, 949 | address = {Cambridge, MA}, 950 | pages = {23-84} 951 | } 952 | 953 | @inbook{milne-thomson68:_theor_hydrod, 954 | author = {Milne-Thomson, L. M.}, 955 | title = {Theoretical Hydrodynamics}, 956 | pages = 480, 957 | publisher = {Ma{C}millan Press}, 958 | edition = {5th}, 959 | address = {London}, 960 | year = 1968 961 | } 962 | 963 | %%%%%%%%%%%%%%%%%%%%%%%%%% 964 | % inproceedings 965 | @inproceedings{wang89:_model_therm_hydrod_aspec_molten, 966 | author = {Wang, S. K. and Blomquist, C. A. and Spencer, B. W.}, 967 | title = {Modeling of Thermal and Hydrodynamic Aspects of Molten 968 | Jet/Water Interactions}, 969 | booktitle = {ANS Proc. 1989 National Heat Transfer Conference}, 970 | year = 1989, 971 | pages = {225-232}, 972 | volume = 4, 973 | address = {Philadelphia}, 974 | month = {September} 975 | } 976 | 977 | @inproceedings{zhang2016Deep, 978 | address = {{Paduva, Italy}}, 979 | title = {Deep {{Learning}} over {{Multi}}-Field {{Categorical Data}}}, 980 | volume = {9626}, 981 | language = {en}, 982 | urldate = {2018-12-26}, 983 | booktitle = {Proceedings of 38th {{European Conference}} on {{IR 984 | Research}}}, 985 | publisher = {{Springer International Publishing}}, 986 | doi = {10.1007/978-3-319-30671-1_4}, 987 | url = {https://link.springer.com/10.1007/978-3-319-30671-1_4}, 988 | author = {Zhang, Weinan and Du, Tianming and Wang, Jun}, 989 | editor = {Ferro, Nicola and Crestani, Fabio and Moens, Marie-Francine 990 | and Mothe, Josiane and Silvestri, Fabrizio and Di Nunzio, 991 | Giorgio Maria and Hauff, Claudia and Silvello, Gianmaria}, 992 | month = mar, 993 | year = {2016}, 994 | keywords = {unread,FM-supported NN (FNN),Sample-based NN (SNN)}, 995 | pages = {45-57} 996 | } 997 | 998 | %%%%%%%%%%%%%%%%%%%%%%%%%% 999 | % Manual 1000 | @Manual{brooke03:_gams, 1001 | author = {Anthony Brooke and David Kendrick and Alexander Meeraus and 1002 | Ramesh Raman}, 1003 | title = {{GAMS}: A User's Guide}, 1004 | year = 2003, 1005 | organization = {GAMS Development Corporation} 1006 | } 1007 | 1008 | %%%%%%%%%%%%%%%%%%%%%%%%%% 1009 | % techreport 1010 | 1011 | @techreport{Peri2007, 1012 | address = {Cambridge, MA}, 1013 | author = {Peri, Giovanni}, 1014 | doi = {10.3386/w12956}, 1015 | institution = {National Bureau of Economic Research}, 1016 | month = mar, 1017 | title = {Immigrants' Complementarities and Native Wages: Evidence from 1018 | {California}}, 1019 | type = {NBER Working Paper}, 1020 | number = 12956, 1021 | url = {https://www.nber.org/papers/w12956.pdf}, 1022 | year = 2007 1023 | } 1024 | 1025 | @TechReport{RePEc:hka:wpaper:2018-037, 1026 | author = {Piotr Dworczak and Scott Duke Kominers and Mohammad Akbarpour}, 1027 | title = {Redistribution through Markets}, 1028 | year = 2018, 1029 | month = Jun, 1030 | nameorder = {random}, 1031 | institution = {Human Capital and Economic Opportunity Working Group}, 1032 | type = {Working Papers}, 1033 | url = {https://ideas.repec.org/p/hka/wpaper/2018-037.html}, 1034 | number = {2018-037}, 1035 | keywords = {optimal mechanism design; redistribution; Inequality; welfare 1036 | theorems}, 1037 | doi = {}, 1038 | } 1039 | 1040 | @techreport{NBERw25205, 1041 | title = {Electoral Systems and Inequalities in Government 1042 | Interventions}, 1043 | author = {Garance Genicot and Laurent Bouton and Micael Castanheira}, 1044 | institution = {National Bureau of Economic Research}, 1045 | type = {NBER Working Paper}, 1046 | number = 25205, 1047 | year = 2018, 1048 | month = {October}, 1049 | doi = {10.3386/w25205}, 1050 | URL = {https://www.nber.org/papers/w25205}, 1051 | nameorder = {random} 1052 | } 1053 | 1054 | %%%%%%%%%%%%%%%%%%%%%%%%%% 1055 | % Online 1056 | @online{stakeda2019web, 1057 | author = {Shiro Takeda}, 1058 | year = {2019}, 1059 | title = {econ.bst: {BibTeX} style file for economics}, 1060 | url = {https://github.com/ShiroTakeda/econ-bst}, 1061 | access = {28th Jan, 2019} 1062 | } 1063 | 1064 | 1065 | %%%%%%%%%%%%%%%%%%%%%%%%%% 1066 | % Phdthesis 1067 | @PhdThesis{takeda05:_econom_analy_envir_regul, 1068 | author = {Shiro Takeda}, 1069 | title = {An Economic Analysis of Environmental Regulations}, 1070 | school = {Hitotsubashi University}, 1071 | year = 2005} 1072 | 1073 | % proceedings 1074 | % techreport 1075 | % mastersthesis 1076 | % misc 1077 | % booklet 1078 | 1079 | % -------------------- 1080 | % Local Variables: 1081 | % mode: bibtex 1082 | % fill-column: 80 1083 | % coding: utf-8 1084 | % End: 1085 | 1086 | --------------------------------------------------------------------------------