diff options
Diffstat (limited to 'Master/texmf-dist/doc/bibtex')
30 files changed, 284 insertions, 29 deletions
diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/CHANGES.md b/Master/texmf-dist/doc/bibtex/econ-bst/CHANGES.md index b441437e0d9..076367319ba 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/CHANGES.md +++ b/Master/texmf-dist/doc/bibtex/econ-bst/CHANGES.md @@ -8,6 +8,37 @@ Changelogs for econ.bst ## Changelogs +## Ver. 3.1 + +* 2021-05-23: Fixed a bug in label for sorting. + +* 2021-05-23: Added sample bibliography items with sortname field. + +* 2021-05-23: Suported sortname field. If you add sortname field to a + bibliography entry, the value of sortname field is used for sorting instead of + author or editor. For the details, see ``sorting'' section in + econ-example.pdf. + + +## Ver. 3.0 + +* 2020-12-29: bst files in the customization folder are updated. + +* 2020-06-23: In the new econ.bst, if the number of authors is greater than N1, + only the first N2 authors' names are displayed in the reference part (and + other authors' names are omitted by "et el."). + + N1 is determined by `bst.max.author.num` (the default value = 8). + N2 is determined by `bst.max.author.num.displayed` (the default value = 3). + + See econ-example.pdf or econ-many-authors.pdf in the customization folder. + + +## Ver. 2.9 + +* 2020-03-26: Fixed the bug related to book editors. + + ## Ver. 2.8 * 2020-03-03: Changed the directory structure. @@ -340,7 +371,7 @@ Changelogs for econ.bst Local Variables: mode: markdown fill-column: 80 -coding: utf-8-dos +coding: utf-8-unix End: --> diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/README.md b/Master/texmf-dist/doc/bibtex/econ-bst/README.md index 938baee6188..1468375d06b 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/README.md +++ b/Master/texmf-dist/doc/bibtex/econ-bst/README.md @@ -29,18 +29,6 @@ features: | [`CHANGES.md`](CHANGES.md) | Changelog file. | | `README.md` | This file. | -| bst file | Explanation | -|:------------------------|:----------------------------------------------------------| -| `econ-a.bst` | A simple style. | -| `econ-b.bst` | A style with much decoration. | -| `econ-no-sort.bst` | This style lists entries in citation order. | -| `econ-abbr.bst` | This style uses abbreviated journal name. | -| `econ-aea.bst` | The style for AEA journals such as AER, JEL, AEJ and JEP. | -| `econ-econometrica.bst` | The style for Econometrica. | -| `econ-jpe.bst` | The style for JPE (Journal of Poilitical Economy). | -| `econ-jet.bst` | The style for JET (Journal of Economic Theoriy). | -| `econ-jie.bst` | The style for JIE (Journal of International Economics). | -| `econ-old.bst` | The style of the old econ.bst. | <!-- リンクの作成方法 --> <!-- [リンクテキスト](URLを記入) --> @@ -50,7 +38,7 @@ features: Local Variables: mode: markdown fill-column: 80 -coding: utf-8-dos +coding: utf-8-unix End: --> diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/README.md b/Master/texmf-dist/doc/bibtex/econ-bst/customization/README.md index b8fafc3153e..c267a0f6ce5 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/README.md +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/README.md @@ -2,7 +2,7 @@ Author: Shiro Takeda e-mail <shiro.takeda@gmail.com> First-written: <2016-03-16> -Time-stamp: <2020-02-26 13:55:53 st> +Time-stamp: <2020-06-24 23:43:29 st> --> Contents of this folder @@ -27,6 +27,7 @@ Contents of this folder | `econ-jie.bst` | [`econ-jie.pdf`](econ-jie.pdf) | The style for JIE (Journal of International Economics). | | `econ-old.bst` | [`econ-old.pdf`](econ-old.pdf) | The style of the old econ.bst. | | | [`econ-numbers.pdf`](econ-numbers.pdf) | An example with numerical citation mode. | +| | [`econ-many-authors.pdf`](econ-many-authors.pdf) | An example with a very large number of authros | | File | Explanation | diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/cited-part.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/cited-part.tex index ace7e411365..eae59453174 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/cited-part.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/cited-part.tex @@ -53,7 +53,17 @@ \citet{Rivers-2005-CombiningTop-Downand}, \citet{WilsonMannOtsuki-2005-AssessingBenefitsof}, \citet{zhang2016Deep}, -\citet{imbens2019Optimized}. +\citet{imbens2019Optimized}, +\citet{Attwood06:SexedUp_art}, +\citet{Attwood09:Mainstreaming}, +\citet{attwood2010porn}, +\citet{jones84:_handb_inter_econom}, +\citet{jones85:_handb_inter_econom}, +\citet{jones97:_handb_inter_econom}. +\citet{d'Aspremont-2004-BalancedBayesianMechanisms}, +\citet{d'Aspremont-2003-CorrelationIndependenceAndBayesian}, +\citet{Chung-1999-ANoteOnMatsushima's}, +\citet{d'Aspremont-1998-LinearInequalityMethodsTo}, \\ \vspace*{1em} @@ -67,5 +77,6 @@ % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-a.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-a.pdf Binary files differindex c9fcf77fc2d..202a7009f5e 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-a.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-a.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-a.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-a.tex index c1f366e76fc..a218313cd69 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-a.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-a.tex @@ -52,4 +52,5 @@ This document uses ``\verb|econ-a.bst|''. % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-abbr.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-abbr.pdf Binary files differindex 76230bae9f7..edd5d8b6077 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-abbr.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-abbr.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-abbr.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-abbr.tex index 5d10761c4b8..2e96a446d15 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-abbr.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-abbr.tex @@ -53,4 +53,5 @@ names such as ``\textit{Am. Econ. Rev.}'' for ``\textit{American Economic Review % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-aea.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-aea.pdf Binary files differindex 476a1d473b3..20bf7a332a5 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-aea.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-aea.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-aea.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-aea.tex index adf2074476d..b78abb60a7a 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-aea.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-aea.tex @@ -55,4 +55,5 @@ Journals}. % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-b.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-b.pdf Binary files differindex fab03cb781a..422dd8d5d04 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-b.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-b.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-b.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-b.tex index 549aa787839..9f49104c7ee 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-b.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-b.tex @@ -52,4 +52,5 @@ This document uses ``\verb|econ-b.bst|''. % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-default.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-default.pdf Binary files differindex 0977859dbd3..4bbc355ff38 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-default.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-default.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-default.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-default.tex index e6a2b5ed13c..366196c498d 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-default.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-default.tex @@ -55,4 +55,5 @@ This document uses ``\verb|econ.bst|''. % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-econometrica.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-econometrica.pdf Binary files differindex 8646918e297..c7a43683e2a 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-econometrica.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-econometrica.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-econometrica.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-econometrica.tex index 9c43e4d35bf..2b8d5a3c1b6 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-econometrica.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-econometrica.tex @@ -52,4 +52,5 @@ This document uses ``\verb|econ-econometrica.bst|''. The style like {\itshape Ec % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jet.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jet.pdf Binary files differindex 438938c75a7..4587051df13 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jet.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jet.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jet.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jet.tex index d446886609c..2e9c332f2ef 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jet.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jet.tex @@ -53,4 +53,5 @@ Economic Theory (JET)''}. % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jie.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jie.tex index 9743a21a9b0..3a280c72371 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jie.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jie.tex @@ -53,4 +53,5 @@ International Economics}). % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jpe.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jpe.pdf Binary files differindex 0f5e899d603..e5c59392f54 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jpe.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jpe.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jpe.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jpe.tex index 373181586b6..eb3e3cf8e7f 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jpe.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-jpe.tex @@ -53,4 +53,5 @@ Polictical Economy}. % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-no-sort.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-no-sort.pdf Binary files differindex 85f101163db..bbe956b94d0 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-no-sort.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-no-sort.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-no-sort.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-no-sort.tex index 65581ff0b9a..a0dba812bf9 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-no-sort.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-no-sort.tex @@ -55,4 +55,5 @@ alphabetical order). % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.pdf Binary files differindex ce42db86b92..b19d6651d38 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex index db2f9821c48..97f74ee7491 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-numbers.tex @@ -69,4 +69,5 @@ To use numerical mode of \texttt{natbib.sty}, we use the following setting. % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-old.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-old.pdf Binary files differindex 28790193eee..823c74a8bce 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-old.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-old.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-old.tex b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-old.tex index 108f4cb46c5..4bb7d6d325d 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-old.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/customization/econ-old.tex @@ -55,4 +55,5 @@ This document uses ``\verb|econ-old.bst|''. % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.bib b/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.bib index 720ec7a504d..b489e70c3bc 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.bib +++ b/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.bib @@ -468,6 +468,104 @@ pages = {264-278} } +@ARTICLE{Attwood06:SexedUp_art, + title = {Sexed Up: Theorizing the Sexualization of Culture}, + author = {Attwood, Feona}, + journal = {Sexualities}, + volume = 9, + number = 1, + pages = {77--94}, + month = feb, + year = 2006 +} + +@article{Chung-1999-ANoteOnMatsushima's, + title = {A Note on {Matsushima}'s Regularity Condition}, + author = {Chung, Kim-Sau}, + year = 1999, + volume = 87, + pages = {429--433}, + issn = {0022-0531}, + doi = {10.1006/jeth.1999.2545}, + abstract = {This note first uses a simple example to show that + H. Matsushima's (1991, J. Econ. Theory54, 198\textendash 203) + regularity condition, to the contrary of his claim, actually + does not imply C. d'Aspremont and L.-A. G\'erard-Varet's + (1979, J. Public Econ.11, 25\textendash 45) compatibility + condition. It then proves a stronger version of Matsushima's + proposition, namely that efficient public decision rules can + be truthfully implemented with budget-balancing mechanisms + under the weak regularity condition. Journal of Economic + Literature Classification Numbers: C72, D82.}, + journal = {Journal of Economic Theory}, + number = 2 +} + +@article{d'Aspremont-1998-LinearInequalityMethodsTo, + title = {Linear Inequality Methods to Enforce Partnerships under + Uncertainty: {{An}} Overview}, + author = {{d'Aspremont}, Claude and {G{\'e}rard-Varet}, Louis-Andr{\'e}}, + year = 1998, + volume = 25, + pages = {311--336}, + issn = {0899-8256}, + doi = {10.1006/game.1998.0675}, + abstract = {We review different (generic) conditions on stochastic outcome + functions to enforce either efficient or nearly efficient + partnerships. Their logical relationship is explored. Two + kinds of conditions are considered. However, the property for + an action profile to be ``compatible'' plays a crucial role in + both kinds. Also, two kinds of enforcement mechanisms are + considered: enforcement through utility transfers and + enforcement through repetition.Journal of Economic + LiteratureClassification Numbers: D2, D7.}, + journal = {Games and Economic Behavior}, + keywords = {folk theorem,mechanism design,partnership,team moral hazard}, + number = 2, + sortname = {Aspremont, Claude and {G{\'e}rard-Varet}, Louis-Andr{\'e}}, +} + +@article{d'Aspremont-2003-CorrelationIndependenceAndBayesian, + title = {Correlation, Independence, and {{Bayesian}} Incentives}, + author = {{d'Aspremont}, Claude and Cr{\'e}mer, Jacques and + {G{\'e}rard-Varet}, Louis-Andr{\'e}}, + year = 2003, + month = oct, + volume = 21, + pages = {281--310}, + issn = {0176-1714, 1432-217X}, + doi = {10.1007/s00355-003-0260-8}, + journal = {Social Choice and Welfare}, + number = 2, + sortname = {Aspremont, Claude and Cr{\'e}mer, Jacques and + {G{\'e}rard-Varet}, Louis-Andr{\'e}}, +} + +@article{d'Aspremont-2004-BalancedBayesianMechanisms, + title = {Balanced Bayesian Mechanisms}, + author = {{d'Aspremont}, Claude and Cr{\'e}mer, Jacques and + {G{\'e}rard-Varet}, Louis-Andr{\'e}}, + year = 2004, + volume = 115, + pages = {385--396}, + issn = {0022-0531}, + doi = {10.1016/j.jet.2003.07.001}, + abstract = {In the transferable utility case, a number of authors have + identified conditions on beliefs that guarantee the existence + of Bayesian incentive compatible mechanisms with balanced + transfers. We present a new, easy to interpret, condition and + we show that it is (strictly) more general than all the other + conditions found in the literature. We also study conditions + guaranteeing the Bayesian implementability of all social + decision rules with balanced budget mechanisms.}, + journal = {Journal of Economic Theory}, + keywords = {Bayesian implementation,Bayesian incentive + compatibility,Mechanism design}, + number = 2, + sortname = {Aspremont, Claude and Cr{\'e}mer, Jacques and + {G{\'e}rard-Varet}, Louis-Andr{\'e}}, +} + %%%%%%%%%%%%%%%%%%%%%%%%%% % Book @Book{krugman91:_geogr_trade, @@ -518,6 +616,48 @@ address = {New York} } +@book{jones84:_handb_inter_econom, + editor = {Ronald W. Jones and Peter B. Kenen}, + title = {Handbook of International Economics}, + publisher = {Elsevier}, + year = 1984, + volume = 1, + address = {Amsterdam} +} + +@book{jones85:_handb_inter_econom, + editor = {Ronald W. Jones and Peter B. Kenen}, + title = {Handbook of International Economics}, + publisher = {Elsevier}, + year = 1985, + volume = 2, + address = {Amsterdam} +} + +@book{jones97:_handb_inter_econom, + title = {Handbook of International Economics}, + editor = {Jones, Ronald W. and Grossman, Gene M. and Kenen, Peter B. + and Rogoff, Kenneth}, + volume = 3, + year = 1997, + publisher = {Elsevier}, + address = {Amsterdam} +} + +@book{Attwood09:Mainstreaming, + title = {Mainstreaming Sex: the Sexualization of Western Culture}, + editor = {Feona Attwood}, + publisher = {I.~B. Tauris}, + year = 2009, +} + +@book{attwood2010porn, + title = {Porn.com: Making Sense of Online Pornography}, + editor = {Feona Attwood}, + year = 2010, + publisher = {Peter Lang} +} + %%%%%%%%%%%%%%%%%%%%%%%%%% % Incollection @InCollection{krugman91:_is_bilat_bad, @@ -896,5 +1036,5 @@ % Local Variables: % mode: bibtex % fill-column: 80 -% code: utf-8-dos +% code: utf-8-unix % End: diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.pdf b/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.pdf Binary files differindex 248c3669363..65f8fb0ae76 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.pdf +++ b/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.pdf diff --git a/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.tex b/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.tex index a12cc33087d..1a5bc65dc4a 100644 --- a/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.tex +++ b/Master/texmf-dist/doc/bibtex/econ-bst/econ-example.tex @@ -55,12 +55,12 @@ %%% title, author, acknowledgement, and date \title{\texttt{econ.bst}:\\ -\BibTeX{} style for economics\thanks{\texttt{econ.bst} is available at +\BibTeX{} style for economics\\(ver. 3.1)\thanks{\texttt{econ.bst} is available at \url{https://github.com/ShiroTakeda/econ-bst}} } \author{Shiro Takeda\thanks{email: {\ttfamily shiro.takeda@gmail.com}.}} -\date{2020/03/03} +\date{2021-05-23} %##################################################################### %######################### Document Starts ########################### @@ -552,6 +552,28 @@ Krugman, Paul~R. (1991) ``Is Bilateralism Bad?'' in Elhanan Helpman and Assaf Cambridge, MA, pp. 9--23. \end{Frame} +\subsubsection{When the number of authors is very large} + +In some research areas, the number of authors of a paper is sometimes very large +(more than 100 ). In such a bibliographic entry, it is not possible to list all +authors names in the reference part. To handle a bibliographic entry with many +authors, ``\texttt{econ.bst}'' lists only a part of authors when the number of +authors is large. In particular, econ.bst works as follows: +\begin{itemize} + \item If the number of authors is greater than N1, only the first N2 authors' + names are displayed in the reference part (and other authors' names are + omitted by ``et el.''). + \item N1 is determined by `bst.max.author.num' (the default value = 8). + \item N2 is determined by `bst.max.author.num.displayed' (the default value = + 3). +\end{itemize} + +This function is applied to The following three entries: +\citet{essd-10-405-2018}, \citet{luthi08:_high}, and +\citet{doi:10.1175/2009BAMS2778.1}. In addition, \texttt{econ-many-authors.tex} +in the customization folder includes other examples. + + \subsection{Customization of citation part} We have so far seen the customization of reference part. ``\texttt{econ.bst}'' @@ -588,9 +610,9 @@ change the style of citation part by changing commands and options provided by See the manual of \texttt{natbib.sty} for the details. \begin{itemize} \item The manual of \texttt{natbib.sty}: - \href{http://mirror.ctan.org/macros/latex/contrib/natbib/natbib.pdf}{natbib.pdf} + \href{https://mirror.ctan.org/macros/latex/contrib/natbib/natbib.pdf}{natbib.pdf} \item The reference sheet of \texttt{natbib.sty}: - \href{http://mirror.ctan.org/macros/latex/contrib/natbib/natnotes.pdf}{natnotex.pdf} + \href{https://mirror.ctan.org/macros/latex/contrib/natbib/natnotes.pdf}{natnotex.pdf} \end{itemize} \subsubsection{Citation by number index} @@ -762,6 +784,10 @@ order of priority: \item Value of ``\texttt{absorder}'' field (if ``\texttt{absorder}'' field has a value) \item Value of ``\texttt{author}'' (or ``\texttt{editor}'') field. + \begin{itemize} + \item If ``\texttt{sortname}'' field is assigned a value, it is used + instead of ``\texttt{author}'' and ``\texttt{editor}''. + \end{itemize} \item Value of ``\texttt{year}'' field. \item Value of ``\texttt{order}'' field. \item Value of ``\texttt{month}'' field. @@ -772,7 +798,7 @@ By default, \begin{itemize} \item ``\texttt{bst.sort.entry.type}'' and ``\texttt{bst.sort.year}'' have zero, - \item \textbf{''\texttt{absorder}''} and \textbf{''\texttt{order}''} + \item \textbf{``\texttt{absorder}''} and \textbf{``\texttt{order}''} fields are not assigned values because they are fields specific to ``\texttt{econ.bst}''. \end{itemize} @@ -840,11 +866,11 @@ FUNCTION {bst.sort.year} By default, old references are listed first. But if you set non-zero to ``\texttt{bst.reverse.year}'', new references are listed first. -\subsection{Sorting by ''\texttt{absorder}'' field} +\subsection{Sorting by ``\texttt{absorder}'' field} If ``\texttt{absorder}'' is defined in bib file, ``\texttt{econ.bst}'' uses its content as the primary sorting key. -You can set number 0--999 to ''\texttt{absorder}'' field. +You can set number 0--999 to ``\texttt{absorder}'' field. \begin{Frame} \begin{center} @@ -858,7 +884,7 @@ with the key \citet{takeda10:_cge_analy_welfar_effec_trade} has 999 for ``\texttt{absorder}'' field and thus listed in the last. -\subsubsection{Ignore ''\texttt{absorder}'' field} +\subsubsection{Ignore ``\texttt{absorder}'' field} If you set some values for ``\texttt{absorder}'' fields in bib file, but if you want to ignore them, set non-zero to @@ -870,6 +896,47 @@ FUNCTION {bst.notuse.absorder.field} \end{verbatim} \end{Frame} +\subsection{Sorting by ``\texttt{sortname}'' field} + +If ``\texttt{sortname}'' field is assigned a value, it is used for sorting +instead of ``\texttt{author}'' or ``\texttt{editor}''. + +For example, the first author name of the following bibliography +entry starts with the letter "d", so it is listed after the +documents with author names that start with the letter c. +\begin{Frame} +\begin{verbatim} +@article{d'Aspremont-2004-BalancedBayesianMechanisms, + title = {Balanced Bayesian Mechanisms}, + author = {{d'Aspremont}, Claude and Cr{\'e}mer, Jacques and + {G{\'e}rard-Varet}, Louis-Andr{\'e}}, + year = 2004, + volume = 115, + pages = {385--396}, + issn = {0022-0531}, + doi = {10.1016/j.jet.2003.07.001}, + journal = {Journal of Economic Theory}, + number = 2, +} +\end{verbatim} +\end{Frame} + +However, for the name ``d'Aspremont'' we should think that it starts with the +letter a.In this case, you had better to add the following ``\texttt{sortname}'' +field +\begin{Frame} +\begin{verbatim} + sortname = {Aspremont, Claude and Cr{\'e}mer, Jacques and + {G{\'e}rard-Varet}, Louis-Andr{\'e}}, +\end{verbatim} +\end{Frame} + +Then, this entry is listed as author whose name begin with letter A. The +following three entries have sortname fields: +\citet{d'Aspremont-2004-BalancedBayesianMechanisms}, +\citet{d'Aspremont-2003-CorrelationIndependenceAndBayesian}, and +\citet{d'Aspremont-1998-LinearInequalityMethodsTo}. + \section{Misc.} \begin{itemize} @@ -889,13 +956,17 @@ FUNCTION {bst.notuse.absorder.field} \citet{BabikerRutherford-2005-EconomicEffectsof}, \citet{goldin:katz:2011}, \citet{goldin:katz:2008}, \citet{goldin:katz:2000}. \citet{stakeda2019web}, -\citet{essd-10-405-2018}, -\citet{luthi08:_high}, -\citet{doi:10.1175/2009BAMS2778.1}, \citet{Rivers-2005-CombiningTop-Downand}, \citet{WilsonMannOtsuki-2005-AssessingBenefitsof}, \citet{zhang2016Deep}, -\citet{imbens2019Optimized}. +\citet{imbens2019Optimized}, +\citet{essd-10-405-2018}, +\citet{luthi08:_high}, +\citet{doi:10.1175/2009BAMS2778.1}, +\citet{d'Aspremont-2004-BalancedBayesianMechanisms}, +\citet{d'Aspremont-2003-CorrelationIndependenceAndBayesian}, +\citet{Chung-1999-ANoteOnMatsushima's}, +\citet{d'Aspremont-1998-LinearInequalityMethodsTo}, \vspace*{1em} @@ -916,5 +987,6 @@ FUNCTION {bst.notuse.absorder.field} % -------------------- % Local Variables: % fill-column: 80 +% coding: utf-8-unix % End: |