summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/citation-style-language
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-08-18 23:08:31 +0000
committerKarl Berry <karl@freefriends.org>2022-08-18 23:08:31 +0000
commitbf08ae957fd3d804338cacbf184ece93fe42fdfe (patch)
tree539b94f87928cfcf9756726b199ba69d48cfefa3 /Master/texmf-dist/tex/latex/citation-style-language
parente1eb60672fb63c90123adfc72ace28887e4e1428 (diff)
citation-style-language (19aug22)
git-svn-id: svn://tug.org/texlive/trunk@64143 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/citation-style-language')
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/citation-style-language.sty146
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/citeproc-bib-data.json2349
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-GB.xml20
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-US.xml20
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-fr-FR.xml395
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/american-chemical-society.csl21
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/american-medical-association.csl13
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/american-sociological-association.csl28
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/apa.csl34
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-author-date.csl24
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-fullnote-bibliography.csl2
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-note-bibliography.csl2
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/harvard-cite-them-right.csl13
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/ieee.csl2
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/modern-language-association.csl4
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/nature.csl26
-rw-r--r--Master/texmf-dist/tex/latex/citation-style-language/styles/vancouver.csl2
17 files changed, 457 insertions, 2644 deletions
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/citation-style-language.sty b/Master/texmf-dist/tex/latex/citation-style-language/citation-style-language.sty
index 546ac13eeca..87165c4be28 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/citation-style-language.sty
+++ b/Master/texmf-dist/tex/latex/citation-style-language/citation-style-language.sty
@@ -9,9 +9,10 @@
\RequirePackage{expl3}
\RequirePackage{xparse}
-\ProvidesExplPackage {citation-style-language} {2022-01-22} {v0.1.0}
+\ProvidesExplPackage {citation-style-language} {2022-08-18} {v0.2.0}
{Citation Style Language for LaTeX}
+\RequirePackage { l3keys2e }
\RequirePackage { filehook }
\RequirePackage { url }
@@ -34,7 +35,7 @@
\__csl_load_check:n
\sys_if_engine_luatex:T
- { \lua_now:n { csl = require("csl") } }
+ { \lua_now:n { csl = require("citeproc-latex") } }
\NewDocumentCommand \cslsetup { m }
@@ -82,8 +83,11 @@
}
+% Appends the cite key into \l__csl_cite_keys_seq and cite-items into
+% \l__csl_cite_items_seq
+% #1, #2: prenote/postnote
+% #3: keys
\cs_new:Npn \__csl_process_cite_items:nnn #1#2#3
- % #1,#2: prenote/postnote, #3: keys
{
\tl_if_novalue:nTF {#2}
{
@@ -120,25 +124,27 @@
{
\prop_clear:N \l__csl_cite_item_prop
\prop_put:Nnn \l__csl_cite_item_prop { id } {#3}
+ % \bool_if:T \l__csl_suppress_author_bool
+ % { \prop_put:Nnn \l__csl_cite_item_prop { suppress-author } { true } }
+ % \bool_if:T \l__csl_author_only_bool
+ % { \prop_put:Nnn \l__csl_cite_item_prop { author-only } { true } }
\tl_if_empty:nF {#1}
{
\tl_set:Nn \l__csl_prefix_tl {#1}
\tl_put_right:NV \l__csl_prefix_tl \l__csl_prefix_separator_tl
- \prop_put:NnV \l__csl_cite_item_prop { prefix } { \l__csl_prefix_tl }
+ \prop_put:NnV \l__csl_cite_item_prop { prefix } \l__csl_prefix_tl
}
- \tl_if_in:nnTF {#2} { = }
+ \tl_if_empty:nF {#2}
{
- \keys_set:nn { csl / cite-item } {#2}
- }
- {
- \tl_if_empty:nF {#2}
+ \tl_if_in:nnTF {#2} { = }
+ { \keys_set:nn { csl / cite-item } {#2} }
{
\regex_match:nnTF { \d+ } {#2}
{ \__csl_set_locator:nn { page } {#2} }
{
\tl_set:Nn \l__csl_suffix_tl {#2}
\tl_put_left:NV \l__csl_suffix_tl \l__csl_suffix_separator_tl
- \prop_put:NnV \l__csl_cite_item_prop { suffix } { \l__csl_suffix_tl }
+ \prop_put:NnV \l__csl_cite_item_prop { suffix } \l__csl_suffix_tl
}
}
}
@@ -202,20 +208,26 @@
\tl_new:N \l__csl_citation_info_tl
\tl_new:N \l__csl_citation_tl
\prop_new:N \g__csl_citations_prop
+\prop_clear:N \l__csl_citation_prop
\cs_new:Npn \__csl_make_citation:NN #1#2
% #1: \l__csl_cite_keys_seq
% #2: \l__csl_cite_items_seq
{
+ \prop_clear:N \l__csl_citation_prop
\__csl_process_citation_id:NN \l__csl_citation_id_tl #1
+ \prop_put:NnV \l__csl_citation_prop { citationID } \l__csl_citation_id_tl
\tl_set:Nx \l__csl_cite_items_tl
{ \seq_use:Nn #2 { , } }
- \exp_args:NNV \__csl_process_note_index:Nn \l__csl_note_index_tl \l__csl_citation_id_tl
- \tl_set:Nx \l__csl_citation_info_tl
+ \prop_put:NnV \l__csl_citation_prop { citationItems } \l__csl_cite_items_tl
+ \__csl_get_note_index:N \l__csl_note_index_tl
+ \prop_put:Nnx \l__csl_citation_prop { properties } { noteIndex = { \l__csl_note_index_tl } }
+ \tl_clear:N \l__csl_citation_info_tl
+ \prop_map_inline:Nn \l__csl_citation_prop
{
- { \l__csl_citation_id_tl }
- { \l__csl_cite_items_tl }
- { \l__csl_note_index_tl }
+ \tl_if_empty:NF \l__csl_citation_info_tl
+ { \tl_put_right:Nn \l__csl_citation_info_tl { , } }
+ \tl_put_right:Nn \l__csl_citation_info_tl { ##1 = { ##2 } }
}
\exp_args:NV \__csl_write_aux_citation:n \l__csl_citation_info_tl
\prop_get:NVNTF \g__csl_citations_prop \l__csl_citation_id_tl
@@ -224,8 +236,9 @@
{
\bool_if:NTF \l__csl_engine_initialized_bool
{
- \tl_set:Nx \l__csl_citation_tl
+ \tl_set:Nf \l__csl_citation_tl
{ \lua_now:e { csl.cite("\l__csl_citation_info_tl") } }
+ \exp_args:NV \__csl_print_citation:n \l__csl_citation_tl
}
{
\exp_args:Nx \__csl_print_undefined_citation:n
@@ -261,26 +274,18 @@
}
-\int_new:N \l__csl_note_index_int
-\int_gzero_new:N \g__csl_last_note_index_int
-\int_gzero_new:N \g__csl_citation_note_count_int
-
-\cs_new:Npn \__csl_process_note_index:Nn #1#2
- % #1 \l__csl_note_index_tl
- % #2: citationID
+% Save the note number to \l__csl_note_index_tl
+% TODO: multiple citations in a note
+\cs_new:Npn \__csl_get_note_index:N #1
+ % #1: \l__csl_note_index_tl
{
- \int_set_eq:Nc \l__csl_note_index_int { c@ \@mpfn }
- \prop_if_in:NnTF \g__csl_citations_prop {#2}
- { \int_incr:N \l__csl_note_index_int }
- { \int_gincr:N \g__csl_citation_note_count_int }
- \int_add:Nn \l__csl_note_index_int { \g__csl_citation_note_count_int }
- \tl_set:Nx #1 { \int_use:N \l__csl_note_index_int }
- \int_gset_eq:NN \g__csl_last_note_index_int \l__csl_note_index_int
- \int_compare:nT { \l__csl_note_index_int < \g__csl_last_note_index_int }
+ \bool_if:NTF \l__csl_note_style_bool
{
- \int_gzero:N \g__csl_last_note_index_int
- \int_gzero:N \g__csl_citation_note_count_int
+ \int_set_eq:Nc \l_tmpa_int { c@ \@mpfn }
+ \int_incr:N \l_tmpa_int
+ \tl_set:Nx #1 { \int_use:N \l_tmpa_int }
}
+ { \tl_set:Nn #1 { 0 } }
}
@@ -294,6 +299,16 @@
}
+% \cs_new:Npn \__csl_print_citation:n #1
+% % #1: citation text
+% {
+% \bool_if:NTF \l__csl_note_style_bool
+% {
+% \footnote {#1}
+% }
+% {#1}
+% }
+
\cs_new:Npn \__csl_print_citation:n #1
% #1: "{<type>}{<citation text>}"
{ \__csl_print_citation_aux:nn #1 }
@@ -330,17 +345,36 @@
\cs_new:Npn \__csl_no_cite:n #1
{
- \__csl_if_preamble:TF
+ \seq_clear:N \l__csl_cite_keys_seq
+ \seq_clear:N \l__csl_cite_items_seq
+ \__csl_process_cite_items:nnn { } { } {#1}
+ \tl_set:Nx \l__csl_cite_items_tl
+ { \seq_use:Nn \l__csl_cite_items_seq { , } }
+ \tl_set:Nx \l__csl_citation_info_tl
{
- \AtBeginDocument
- { \__csl_write_aux_citation:n { { nocite } {#1} { } } }
+ citationID = { @nocite } ,
+ citationItems = { \l__csl_cite_items_tl } ,
+ properties = { noteIndex = { 0 } }
}
- { \__csl_write_aux_citation:n { { nocite } {#1} { } } }
+ \exp_args:NV \__csl_no_cite_write_aux:n \l__csl_citation_info_tl
\sys_if_engine_luatex:T
{ \lua_now:n { csl.nocite("#1") } }
}
+\cs_new:Npn \__csl_no_cite_write_aux:n #1
+ {
+ \__csl_if_preamble:TF
+ {
+ \AtBeginDocument
+ { \exp_args:Nx \__csl_write_aux_citation:n { #1 } }
+ }
+ {
+ \exp_args:Nx \__csl_write_aux_citation:n { #1 }
+ }
+ }
+
+
\prg_new_conditional:Nnn \__csl_if_preamble: { T , F , TF }
{
\if_meaning:w \@begindocumenthook \@undefined
@@ -352,6 +386,7 @@
% Used in aux files to register cite items.
+% #1: a citation object
\cs_set:Npn \citation #1
{
\sys_if_engine_luatex:T
@@ -362,9 +397,9 @@
\cs_new:Npn \cslcite #1#2
{
\bibcite {#1} {#2}
- \if@filesw
- \iow_now:Nn \@auxout { \bibcite {#1} {#2} }
- \fi
+ % \if@filesw
+ % \iow_now:Nn \@auxout { \bibcite {#1} {#2} }
+ % \fi
}
@@ -444,6 +479,8 @@
entry-spacing = { 1 } ,
}
+\ProcessKeysPackageOptions { csl }
+
\bool_new:N \l__csl_engine_initialized_bool
\prop_set_from_keyval:Nn \l__csl_babel_locale_mapping_prop
@@ -590,6 +627,7 @@
}
\str_if_eq:eeT { \lua_now:n { tex.print(csl.initialized) } } { true }
{ \bool_set_true:N \l__csl_engine_initialized_bool }
+ \__csl_get_style_class:
\@ifpackageloaded { hyperref }
{ \lua_now:n { csl.enable_linking() } }
{ }
@@ -614,6 +652,21 @@
\fi
}
+
+\str_new:N \l__csl_style_class_str
+% In-text (including numeric or author-date) or note style
+\bool_new:N \l__csl_note_style_bool
+
+\cs_new:Npn \__csl_get_style_class: {
+ \bool_if:NT \l__csl_engine_initialized_bool
+ {
+ \str_set:Nx \l__csl_style_class_str { \lua_now:n { csl.get_style_class() } }
+ \str_if_eq:VnT \l__csl_style_class_str { note }
+ { \bool_set_true:N \l__csl_note_style_bool }
+ }
+}
+
+
\clist_new:N \l__csl_options_clist
\cs_new:Npn \__csl_write_aux_csl_options:
@@ -972,6 +1025,19 @@
}
+% csquotes
+
+\AtEndOfPackageFile* { csquotes }
+ {
+ \BlockquoteDisable
+ {
+ \cs_set_eq:NN \__csl_make_citation:NN \use_none:nn
+ % \sys_if_engine_luatex:T
+ % { \lua_now:n { csl.preview_mode = true } }
+ }
+ }
+
+
% hyperref
% The hyperref package also patches \bibcite but it cannot provide hyperlinks
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/citeproc-bib-data.json b/Master/texmf-dist/tex/latex/citation-style-language/citeproc-bib-data.json
deleted file mode 100644
index 69e26e16c31..00000000000
--- a/Master/texmf-dist/tex/latex/citation-style-language/citeproc-bib-data.json
+++ /dev/null
@@ -1,2349 +0,0 @@
-{
- "description": "Bib CSL mapping",
- "types": {
- "archival": {
- "csl": "collection",
- "source": "jurabib.bst"
- },
- "archive": {
- "csl": "collection",
- "notes": "New in CSL v1.0.2.",
- "source": "gbt7714-numerical.bst"
- },
- "article": {
- "csl": "article-journal",
- "notes": "May also be `article-magazine` or `article-newspaper` depending upon the field `entrysubtype`.",
- "source": "bibtex"
- },
- "artifactdataset": {
- "csl": "dataset",
- "source": "ACM-Reference-Format.bst"
- },
- "artifactsoftware": {
- "csl": "software",
- "source": "ACM-Reference-Format.bst"
- },
- "artwork": {
- "csl": "graphic",
- "source": "biblatex"
- },
- "atlas": {
- "csl": null,
- "source": "ametsoc2014.bst"
- },
- "audio": {
- "csl": "song",
- "notes": "CSL's `song` can be used for any audio recording (not only music).",
- "source": "biblatex"
- },
- "bachelor": {
- "csl": "thesis",
- "source": "dlfltxbbibtex.bst"
- },
- "bibnote": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex"
- },
- "book": {
- "csl": "book",
- "source": "bibtex"
- },
- "bookinbook": {
- "csl": "chapter",
- "source": "biblatex"
- },
- "booklet": {
- "csl": "pamphlet",
- "source": "bibtex"
- },
- "brochure": {
- "csl": "pamphlet",
- "source": "thesnumb.bst"
- },
- "cconference": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "collection": {
- "csl": "book",
- "source": "biblatex"
- },
- "comment": {
- "csl": null,
- "notes": "Special entry type for Scribe compatibility",
- "source": "bibtex"
- },
- "commentary": {
- "csl": "book",
- "notes": "Not supported.",
- "source": "biblatex"
- },
- "commented": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "conference": {
- "alias": "inproceedings",
- "csl": "paper-conference",
- "source": "bibtex"
- },
- "ctan": {
- "csl": "software",
- "source": "tugboat.bst"
- },
- "customa": {
- "csl": null,
- "source": "biblatex"
- },
- "customb": {
- "csl": null,
- "source": "biblatex"
- },
- "customc": {
- "csl": null,
- "source": "biblatex"
- },
- "customd": {
- "csl": null,
- "source": "biblatex"
- },
- "custome": {
- "csl": null,
- "source": "biblatex"
- },
- "customf": {
- "csl": null,
- "source": "biblatex"
- },
- "database": {
- "csl": "dataset",
- "source": "gbt7714-numerical.bst"
- },
- "dataset": {
- "csl": "dataset",
- "source": "biblatex"
- },
- "dictionary": {
- "csl": "book",
- "source": "vancouver.bst"
- },
- "docthesis": {
- "csl": "thesis",
- "source": "gost2003.bst"
- },
- "electronic": {
- "alias": "online",
- "csl": "webpage",
- "source": "biblatex"
- },
- "eulegislation": {
- "csl": "legislation",
- "source": "bath.bst"
- },
- "footnote": {
- "csl": null,
- "source": "apsrev4-2.bst"
- },
- "game": {
- "csl": "software",
- "source": "ACM-Reference-Format.bst"
- },
- "govpub": {
- "csl": "regulation",
- "source": "thesnumb.bst"
- },
- "habthesis": {
- "csl": "thesis",
- "source": "bestpapers-export.bst"
- },
- "heading": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "hidden": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "image": {
- "csl": "graphic",
- "source": "biblatex"
- },
- "inbook": {
- "csl": "chapter",
- "source": "bibtex"
- },
- "incollection": {
- "csl": "chapter",
- "source": "bibtex"
- },
- "inloosecollection": {
- "csl": "chapter",
- "source": "resphilosophica.bst"
- },
- "inpress": {
- "csl": "article",
- "notes": "Use for preprints, working papers, and similar works posted on a platform where some level of persistence or stewardship is expected (e.g. arXiv or other preprint repositories, working paper series).",
- "source": "bjnano.bst"
- },
- "inproceedings": {
- "csl": "paper-conference",
- "source": "bibtex"
- },
- "inreference": {
- "csl": "entry",
- "notes": "May also be `entry`, `entry-dictionary` or `entry-encyclopedia`.",
- "source": "biblatex"
- },
- "inserialcollection": {
- "csl": null,
- "source": "asmejour.bst"
- },
- "internet": {
- "csl": "webpage",
- "source": "IEEEtran.bst"
- },
- "journalpart": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "journals": {
- "csl": "periodical",
- "source": "bestpapers-export.bst"
- },
- "jurisdiction": {
- "csl": null,
- "notes": "\"Court decisions, court recordings, and similar things.\"",
- "source": "biblatex"
- },
- "jurthesis": {
- "csl": "thesis",
- "source": "jurabib.bst"
- },
- "legal": {
- "csl": "treaty",
- "notes": "\"Legal documents such as treaties.\"",
- "source": "biblatex"
- },
- "legislation": {
- "csl": "legislation",
- "notes": "\"Laws, bills, legislative proposals, and similar things.\" May also be `bill`",
- "source": "biblatex"
- },
- "letter": {
- "csl": "personal_communication",
- "source": "biblatex"
- },
- "lexicon": {
- "csl": "book",
- "source": "jurabib.bst"
- },
- "majorthesis": {
- "csl": "thesis",
- "source": "achicago.bst"
- },
- "manual": {
- "csl": "report",
- "nots": "CSL's `report` is also used for manuals and similar technical documentation (e.g. a software, instrument, or test manual).",
- "source": "bibtex"
- },
- "map": {
- "csl": "map",
- "source": "vancouver.bst"
- },
- "mastersthesis": {
- "alias": "thesis",
- "csl": "thesis",
- "source": "bibtex"
- },
- "masterthesis": {
- "csl": "thesis",
- "source": "asaetr.bst"
- },
- "minorthesis": {
- "csl": "thesis",
- "source": "achicago.bst"
- },
- "misc": {
- "csl": "document",
- "notes": "New in CSL v1.0.2.",
- "source": "bibtex"
- },
- "monograph": {
- "csl": "book",
- "source": "gbt7714-numerical.bst"
- },
- "monography": {
- "csl": "book",
- "source": "abntex2-alf.bst"
- },
- "movie": {
- "csl": "motion_picture",
- "source": "biblatex"
- },
- "music": {
- "csl": "song",
- "source": "biblatex"
- },
- "mvbook": {
- "csl": "book",
- "source": "biblatex"
- },
- "mvcollection": {
- "csl": "book",
- "source": "biblatex"
- },
- "mvproceedings": {
- "csl": "book",
- "source": "biblatex"
- },
- "mvreference": {
- "csl": "book",
- "source": "biblatex"
- },
- "news": {
- "csl": "article-newspaper",
- "source": "seuthesix.bst"
- },
- "newspaper": {
- "csl": "article-newspaper",
- "source": "gbt7714-numerical.bst"
- },
- "online": {
- "csl": "webpage",
- "source": "biblatex"
- },
- "other": {
- "csl": null,
- "source": "bjnano.bst"
- },
- "patent": {
- "csl": "patent",
- "source": "biblatex"
- },
- "performance": {
- "csl": "performance",
- "notes": "New in CSL v1.0.2.",
- "source": "biblatex"
- },
- "periodical": {
- "csl": "periodical",
- "notes": "New in CSL v1.0.2.",
- "source": "biblatex"
- },
- "phdthesis": {
- "alias": "thesis",
- "csl": "thesis",
- "source": "bibtex"
- },
- "preamble": {
- "csl": null,
- "notes": "Special entry type for inserting commands or text in the bbl",
- "source": "bibtex"
- },
- "preprint": {
- "csl": "article",
- "notes": "Use for preprints, working papers, and similar works posted on a platform where some level of persistence or stewardship is expected (e.g. arXiv or other preprint repositories, working paper series).",
- "source": "gbt7714-numerical.bst"
- },
- "presentation": {
- "csl": "speech",
- "notes": "A speech or other presentation (e.g. a paper, talk, poster, or symposium at a conference).",
- "source": "apsrev4-2.bst"
- },
- "proceedings": {
- "csl": "book",
- "source": "bibtex"
- },
- "program": {
- "csl": "software",
- "source": "ChemCommun.bst"
- },
- "reference": {
- "csl": "book",
- "source": "biblatex"
- },
- "report": {
- "csl": "report",
- "source": "biblatex"
- },
- "review": {
- "csl": "review",
- "notes": "\"A more specific variant of the `@article` type\"",
- "source": "biblatex"
- },
- "set": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex"
- },
- "setup": {
- "csl": null,
- "source": "bestpapers-export.bst"
- },
- "software": {
- "csl": "software",
- "notes": "New in CSL v1.0.2.",
- "source": "biblatex"
- },
- "standard": {
- "csl": "standard",
- "notes": "New in CSL v1.0.2.",
- "source": "biblatex"
- },
- "string": {
- "csl": null,
- "notes": "Special entry type for defining abbreviations",
- "source": "bibtex"
- },
- "suppbook": {
- "csl": "chapter",
- "notes": "lossy mapping; \"Supplemental material in a `@book`. This type is closely related to the @inbook entry type. While `@inbook` is primarily intended for a part of a book with its own title (e. g., a single essay in a collection of essays by the same author), this type is provided for elements such as prefaces, introductions, forewords, afterwords, etc. which often have a generic title only. Style guides may require such items to be formatted differently from other `@inbook` items.\"",
- "source": "biblatex"
- },
- "suppcollection": {
- "csl": "chapter",
- "notes": "lossy mapping; see `suppbook`",
- "source": "biblatex"
- },
- "suppperiodical": {
- "csl": "article",
- "notes": "see `article`",
- "source": "biblatex"
- },
- "techreport": {
- "alias": "report",
- "csl": "report",
- "source": "bibtex"
- },
- "techstandard": {
- "csl": "standard",
- "notes": "New in CSL v1.0.2.",
- "source": "udesoftec.bst"
- },
- "thesis": {
- "csl": "thesis",
- "source": "biblatex"
- },
- "uklegislation": {
- "csl": "legislation",
- "source": "bath.bst"
- },
- "unpublished": {
- "csl": "manuscript",
- "notes": "For unpublished works not made widely available or only hosted on personal websites, use manuscript",
- "source": "bibtex"
- },
- "video": {
- "csl": "motion_picture",
- "source": "biblatex"
- },
- "webpage": {
- "csl": "webpage",
- "source": "IEEEtran.bst"
- },
- "www": {
- "alias": "online",
- "csl": "webpage",
- "source": "biblatex"
- },
- "xdata": {
- "csl": null,
- "notes": "special item type: \"`@xdata` entries hold data which may be inherited by other entries using the xdata field. Entries of this type only serve as data containers; they may not be cited or added to the bibliography.\"",
- "source": "biblatex"
- }
- },
- "fields": {
- "abstract": {
- "csl": "abstract",
- "source": "biblatex",
- "type": "literal"
- },
- "account": {
- "csl": null,
- "source": "address-html.bst"
- },
- "acronym": {
- "csl": null,
- "source": "export.bst"
- },
- "add": {
- "csl": null,
- "source": "figbib.bst"
- },
- "add1": {
- "csl": null,
- "source": "figbib1.bst"
- },
- "addendum": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "address": {
- "alias": "location",
- "csl": "publisher-place",
- "source": "bibtex",
- "type": "literal"
- },
- "adsurl": {
- "csl": null,
- "source": "mnras.bst"
- },
- "advisor": {
- "csl": null,
- "source": "ACM-Reference-Format.bst"
- },
- "afterword": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "name"
- },
- "annotate": {
- "csl": "note",
- "source": "apacite.bst"
- },
- "annotation": {
- "csl": "note",
- "notes": "Descriptive text or notes about an item (e.g. in an annotated bibliography)",
- "source": "biblatex",
- "type": "literal"
- },
- "annotator": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "annote": {
- "alias": "annotation",
- "csl": "note",
- "source": "biblatex",
- "type": "literal"
- },
- "annotelanguage": {
- "csl": null,
- "source": "bababbr3-fl.bst"
- },
- "applicant": {
- "csl": null,
- "source": "seuthesix.bst"
- },
- "archive": {
- "csl": "archive",
- "source": "apsrev4-2.bst"
- },
- "archiveprefix": {
- "alias": "eprinttype",
- "csl": "archive",
- "source": "biblatex",
- "type": "literal"
- },
- "archname": {
- "csl": "archive",
- "source": "jurabib.bst"
- },
- "articleno": {
- "csl": null,
- "source": "ACM-Reference-Format.bst"
- },
- "arxiv": {
- "csl": null,
- "source": "aomalpha.bst"
- },
- "assignee": {
- "csl": null,
- "source": "vancouver.bst"
- },
- "author": {
- "csl": "author",
- "source": "bibtex",
- "type": "name"
- },
- "authorcountry": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "authorfa": {
- "csl": null,
- "source": "asa-fa.bst"
- },
- "authortype": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "bibsource": {
- "csl": null,
- "source": "export.bst"
- },
- "biburl": {
- "csl": null,
- "source": "export.bst"
- },
- "binding": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "birthday": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "birthyear": {
- "csl": null,
- "source": "address-html.bst"
- },
- "bookaddress": {
- "csl": null,
- "source": "apsrev4-2.bst"
- },
- "bookauthor": {
- "csl": "container-author",
- "source": "biblatex",
- "type": "name"
- },
- "booklanguage": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "bookpages": {
- "csl": null,
- "source": "ACM-Reference-Format.bst"
- },
- "bookpagination": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "booksubtitle": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "booktitle": {
- "csl": "container-title",
- "source": "bibtex",
- "type": "literal"
- },
- "booktitleaddon": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "caption": {
- "csl": null,
- "source": "figbib.bst"
- },
- "caption1": {
- "csl": null,
- "source": "figbib1.bst"
- },
- "cartographer": {
- "csl": null,
- "source": "vancouver.bst"
- },
- "casenumber": {
- "csl": null,
- "source": "bath.bst"
- },
- "category": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "cellular": {
- "csl": null,
- "source": "address-html.bst"
- },
- "chair": {
- "csl": null,
- "source": "apacite.bst"
- },
- "chapter": {
- "csl": "chapter-number",
- "source": "bibtex",
- "type": "literal"
- },
- "citedate": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "city": {
- "csl": null,
- "source": "ACM-Reference-Format.bst"
- },
- "coden": {
- "csl": null,
- "source": "is-abbrv.bst"
- },
- "collaboration": {
- "csl": null,
- "source": "apsrev4-2.bst"
- },
- "collator": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "commentator": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "compiler": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "condition": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "conference-location": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "conference-number": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "conference-year": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "copy": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "country": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "credits": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "crossref": {
- "csl": null,
- "notes": "Inherits data from a parent entry.",
- "source": "biblatex",
- "type": "entrykey"
- },
- "ctrl-article-title": {
- "csl": null,
- "source": "achemso.bst"
- },
- "ctrl-chapter-title": {
- "csl": null,
- "source": "achemso.bst"
- },
- "ctrl-doi": {
- "csl": null,
- "source": "achemso.bst"
- },
- "ctrl-etal-firstonly": {
- "csl": null,
- "source": "achemso.bst"
- },
- "ctrl-etal-number": {
- "csl": null,
- "source": "achemso.bst"
- },
- "ctrl-link-doi": {
- "csl": null,
- "source": "angew.bst"
- },
- "ctrl-use-doi-all": {
- "csl": null,
- "source": "angew.bst"
- },
- "ctrl-use-title": {
- "csl": null,
- "source": "achemso.bst"
- },
- "dataset": {
- "csl": null,
- "source": "apalike-ejor.bst"
- },
- "date": {
- "csl": "issued",
- "source": "biblatex",
- "type": "date"
- },
- "day": {
- "csl": null,
- "source": "apacite.bst"
- },
- "dayfiled": {
- "csl": null,
- "source": "IEEEtran.bst"
- },
- "definition": {
- "csl": null,
- "source": "glsplain.bst"
- },
- "department": {
- "csl": null,
- "source": "ametsoc2014.bst"
- },
- "description": {
- "csl": null,
- "source": "ChemCommun.bst"
- },
- "designator": {
- "csl": null,
- "source": "thesnumb.bst"
- },
- "dimensions": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "dissyear": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "doi": {
- "csl": "DOI",
- "source": "biblatex",
- "type": "verbatim"
- },
- "dticnumber": {
- "csl": null,
- "source": "thesnumb.bst"
- },
- "dummy": {
- "csl": null,
- "source": "expcites.bst"
- },
- "edition": {
- "csl": "edition",
- "source": "bibtex",
- "type": "literal"
- },
- "editor": {
- "csl": "editor",
- "source": "bibtex",
- "type": "name"
- },
- "editora": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "editoratype": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "editorb": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "editorbtype": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "editorc": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "editorctype": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "editortype": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "eid": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "email": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "endnumber": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "endvolume": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "endyear": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "englishtitle": {
- "csl": null,
- "source": "apacite.bst"
- },
- "entryset": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "entrykey"
- },
- "entrysubtype": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "epilog": {
- "csl": null,
- "source": "iopart-num.bst"
- },
- "eprint": {
- "csl": null,
- "notes": "Mapped to `PMID` if `eprinttype` is \"PubMed\".",
- "source": "biblatex",
- "type": "verbatim"
- },
- "eprintclass": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "eprints": {
- "csl": null,
- "source": "databib.bst"
- },
- "eprinttype": {
- "csl": "archive",
- "source": "biblatex",
- "type": "literal"
- },
- "erratumeid": {
- "csl": null,
- "source": "ChemCommun.bst"
- },
- "erratumgermanpages": {
- "csl": null,
- "source": "ChemCommun.bst"
- },
- "erratumnumpages": {
- "csl": null,
- "source": "ChemCommun.bst"
- },
- "erratumpages": {
- "csl": null,
- "source": "ChemCommun.bst"
- },
- "erratumvolume": {
- "csl": null,
- "source": "ChemCommun.bst"
- },
- "erratumyear": {
- "csl": null,
- "source": "ChemCommun.bst"
- },
- "eventdate": {
- "csl": "event-date",
- "source": "biblatex",
- "type": "date"
- },
- "eventtitle": {
- "csl": "event-title",
- "notes": "Supercedes `event` in CSL v1.0.2.",
- "source": "biblatex",
- "type": "literal"
- },
- "eventtitleaddon": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "eventyear": {
- "csl": null,
- "source": "bath.bst"
- },
- "execute": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "code"
- },
- "faddress": {
- "csl": null,
- "source": "achicago.bst"
- },
- "fakeset": {
- "csl": null,
- "source": "biblatex.bst"
- },
- "fax": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "file": {
- "csl": null,
- "source": "biblatex",
- "type": "verbatim"
- },
- "firstkey": {
- "csl": null,
- "source": "apacite.bst"
- },
- "fjournal": {
- "csl": null,
- "source": "ijmart.bst"
- },
- "flanguage": {
- "csl": null,
- "source": "achicago.bst"
- },
- "font": {
- "csl": null,
- "source": "nederlands.bst"
- },
- "foreword": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "founder": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "fpublisher": {
- "csl": null,
- "source": "achicago.bst"
- },
- "ftitle": {
- "csl": null,
- "source": "achicago.bst"
- },
- "furtherresp": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "fyear": {
- "csl": null,
- "source": "achicago.bst"
- },
- "gender": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "germanpages": {
- "csl": null,
- "source": "ChemCommun.bst"
- },
- "group": {
- "csl": null,
- "source": "glsplain.bst"
- },
- "heading": {
- "csl": null,
- "source": "glsplain.bst"
- },
- "hereafter": {
- "csl": null,
- "source": "opcit.bst"
- },
- "holder": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "howcited": {
- "csl": null,
- "source": "jox.bst"
- },
- "howpublished": {
- "csl": null,
- "notes": "Check if a URL is contained.",
- "source": "bibtex",
- "type": "literal"
- },
- "hyphenation": {
- "alias": "langid",
- "csl": "language",
- "source": "biblatex",
- "type": "literal"
- },
- "ids": {
- "csl": null,
- "source": "biblatex",
- "type": "entrykey"
- },
- "illustrated": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "illustrations": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "illustrator": {
- "csl": null,
- "source": "achicago.bst"
- },
- "indexsorttitle": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "indextitle": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "institution": {
- "csl": "publisher",
- "source": "bibtex",
- "type": "literal"
- },
- "introduction": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "intype": {
- "csl": null,
- "source": "IEEEtran.bst"
- },
- "inventor": {
- "csl": null,
- "source": "vancouver.bst"
- },
- "ipc": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "isan": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "isbn": {
- "csl": "ISBN",
- "source": "biblatex",
- "type": "literal"
- },
- "ismn": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "iso-abbreviation": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "iso-author-punctuation": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "iso-date-place": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "isrn": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "issn": {
- "csl": "ISSN",
- "source": "biblatex",
- "type": "literal"
- },
- "issue": {
- "csl": "issue",
- "source": "biblatex",
- "type": "literal"
- },
- "issuesubtitle": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "issuetitle": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "issuetitleaddon": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "iswc": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "jfmnumber": {
- "csl": null,
- "source": "aomalpha.bst"
- },
- "journal": {
- "alias": "journaltitle",
- "csl": "container-title",
- "source": "bibtex",
- "type": "literal"
- },
- "journalsubtitle": {
- "csl": null,
- "notes": "It should be concatenated to the `container-title`.",
- "source": "biblatex",
- "type": "literal"
- },
- "journaltie": {
- "csl": null,
- "source": "tugboat.bst"
- },
- "journaltitle": {
- "csl": "container-title",
- "source": "biblatex",
- "type": "literal"
- },
- "journaltitleaddon": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "juraauthor": {
- "csl": null,
- "source": "jox.bst"
- },
- "juratitle": {
- "csl": null,
- "source": "jox.bst"
- },
- "key": {
- "alias": "sortkey",
- "csl": null,
- "notes": "Not supported.",
- "source": "bibtex",
- "type": "literal"
- },
- "keywords": {
- "csl": null,
- "source": "biblatex",
- "type": "keyword"
- },
- "label": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "lang": {
- "csl": null,
- "source": "hustthesis.bst"
- },
- "langid": {
- "csl": "language",
- "notes": "The language id of the bibliography entry. The identifier must be a language name known to the babel/polyglossia packages. It should be converted to ISO 639-1 language code in CSL.",
- "source": "biblatex",
- "type": "literal"
- },
- "langidopts": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "language": {
- "csl": null,
- "notes": "The `language` field in `biblatex` has no special internal meaning thus it is used only when langid is missing.",
- "source": "biblatex",
- "type": "key"
- },
- "lastaccessed": {
- "csl": "accessed",
- "source": "ACM-Reference-Format.bst"
- },
- "lastchecked": {
- "csl": "accessed",
- "source": "apacite.bst"
- },
- "lccn": {
- "csl": null,
- "source": "is-abbrv.bst"
- },
- "library": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "lista": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "listb": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "listc": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "listd": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "liste": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "listf": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "littype": {
- "csl": null,
- "source": "seuthesix.bst"
- },
- "location": {
- "csl": "publisher-place",
- "source": "biblatex",
- "type": "literal"
- },
- "madadurltest": {
- "csl": null,
- "source": "alpha-persian.bst"
- },
- "main": {
- "csl": null,
- "source": "figbib.bst"
- },
- "main1": {
- "csl": null,
- "source": "figbib1.bst"
- },
- "mainsubtitle": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "maintitle": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "maintitleaddon": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "majorcode": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "marginnote": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "mark": {
- "csl": null,
- "source": "gbt7714-numerical.bst"
- },
- "max.best.papers": {
- "csl": null,
- "source": "bestpapers-export.bst"
- },
- "mcitetail": {
- "csl": null,
- "source": "apsrmpM.bst"
- },
- "media": {
- "csl": "medium",
- "source": "gost2003.bst"
- },
- "medium": {
- "csl": "medium",
- "source": "gbt7714-numerical.bst"
- },
- "meeting": {
- "csl": null,
- "source": "amsra.bst"
- },
- "misctitle": {
- "csl": null,
- "source": "aasjournal.bst"
- },
- "miscyear": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "mobile": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "modifydate": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "month": {
- "csl": null,
- "notes": "Used only when `date` is empty.",
- "source": "bibtex",
- "type": "literal"
- },
- "monthfiled": {
- "csl": null,
- "source": "IEEEtran.bst"
- },
- "mrnumber": {
- "csl": null,
- "source": "amsplain.bst"
- },
- "name": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "namea": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "nameaddon": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "nameatype": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "nameb": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "namebtype": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "namec": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "namectype": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "nationality": {
- "csl": null,
- "source": "IEEEtran.bst"
- },
- "nbirthday": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "newpage": {
- "csl": null,
- "source": "tugboat.bst"
- },
- "newspaper": {
- "csl": "container-title",
- "source": "seuthesix.bst"
- },
- "nickname": {
- "csl": null,
- "source": "address-html.bst"
- },
- "nihms": {
- "csl": null,
- "source": "apacite.bst"
- },
- "noed": {
- "csl": null,
- "source": "jox.bst"
- },
- "normal": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "normalauthor": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "normaleditor": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "note": {
- "csl": "note",
- "source": "bibtex",
- "type": "literal"
- },
- "nowarning": {
- "csl": null,
- "source": "tugboat.bst"
- },
- "number": {
- "csl": "number",
- "notes": "It is mapped to `issue` in `@ariticle` but to `number` in `@patent` or `@report`.",
- "source": "bibtex",
- "type": "literal"
- },
- "numpages": {
- "csl": null,
- "source": "ACM-Reference-Format.bst"
- },
- "oaddress": {
- "csl": null,
- "source": "achicago.bst"
- },
- "options": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "option"
- },
- "opublisher": {
- "csl": null,
- "source": "achicago.bst"
- },
- "org-short": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "organization": {
- "csl": "publisher",
- "notes": "It is mapped to `author` (in `institution` property) if possible.",
- "source": "bibtex",
- "type": "literal"
- },
- "origdate": {
- "csl": "original-date",
- "source": "biblatex",
- "type": "date"
- },
- "originaladdress": {
- "csl": "original-publisher-place",
- "source": "apacite.bst"
- },
- "originalbooktitle": {
- "csl": null,
- "source": "apacite.bst"
- },
- "originaledition": {
- "csl": null,
- "source": "apacite.bst"
- },
- "originaleditor": {
- "csl": null,
- "source": "apacite.bst"
- },
- "originaljournal": {
- "csl": null,
- "source": "apacite.bst"
- },
- "originalnumber": {
- "csl": null,
- "source": "apacite.bst"
- },
- "originalpages": {
- "csl": null,
- "source": "apacite.bst"
- },
- "originalpublisher": {
- "csl": "original-publisher",
- "source": "apacite.bst"
- },
- "originalvolume": {
- "csl": null,
- "source": "apacite.bst"
- },
- "originalyear": {
- "csl": "original-date",
- "source": "apacite.bst"
- },
- "origlanguage": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "origlocation": {
- "csl": "original-publisher-place",
- "source": "biblatex",
- "type": "literal"
- },
- "origpublisher": {
- "csl": "original-publisher",
- "source": "biblatex",
- "type": "literal"
- },
- "origtitle": {
- "csl": "original-title",
- "source": "biblatex",
- "type": "literal"
- },
- "oyear": {
- "csl": null,
- "source": "achicago.bst"
- },
- "pagename": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "pages": {
- "csl": "page",
- "source": "bibtex",
- "type": "range"
- },
- "pagetotal": {
- "csl": "number-of-pages",
- "source": "biblatex",
- "type": "literal"
- },
- "pagination": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "paper": {
- "csl": null,
- "source": "IEEEtran.bst"
- },
- "part": {
- "csl": "part",
- "source": "biblatex",
- "type": "literal"
- },
- "patentid": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "pdf": {
- "alias": "file",
- "csl": null,
- "source": "biblatex",
- "type": "verbatim"
- },
- "phone": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "pid": {
- "csl": null,
- "source": "seuthesix.bst"
- },
- "pii": {
- "csl": null,
- "source": "amsra.bst"
- },
- "pmcid": {
- "csl": "PMCID",
- "source": "apacite.bst"
- },
- "prebibitem": {
- "csl": null,
- "source": "tugboat.bst"
- },
- "preface": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "preprint": {
- "csl": null,
- "source": "amsra.bst"
- },
- "presort": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "price": {
- "csl": null,
- "source": "is-abbrv.bst"
- },
- "primaryclass": {
- "alias": "eprintclass",
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "printing": {
- "csl": null,
- "source": "dk-abbrv.bst"
- },
- "prioritycountry": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "prioritydate": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "prioritynumber": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "pseudonym": {
- "csl": null,
- "source": "jox.bst"
- },
- "publication": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "publicationdate": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "publisher": {
- "csl": "publisher",
- "source": "bibtex",
- "type": "literal"
- },
- "pubmed": {
- "csl": "PMID",
- "source": "urlbst"
- },
- "pubstate": {
- "csl": null,
- "source": "biblatex",
- "type": "key"
- },
- "related": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "entrykey"
- },
- "relatedoptions": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "option"
- },
- "relatedstring": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "relatedtype": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "reprinted-from": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "reprinted-text": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "reprinttitle": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "requestdate": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "requestnumber": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "responsible": {
- "csl": null,
- "source": "rusnat.bst"
- },
- "review": {
- "csl": null,
- "source": "amsra.bst"
- },
- "revision": {
- "csl": null,
- "source": "IEEEtran.bst"
- },
- "school": {
- "alias": "institution",
- "csl": "publisher",
- "source": "bibtex",
- "type": "literal"
- },
- "score": {
- "csl": null,
- "source": "bestpapers-export.bst"
- },
- "section": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "series": {
- "csl": "collection-title",
- "source": "bibtex",
- "type": "literal"
- },
- "seriesedition": {
- "csl": null,
- "source": "achicago.bst"
- },
- "short": {
- "csl": null,
- "source": "glsplain.bst"
- },
- "shortarchive": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "shortauthor": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "shorteditor": {
- "csl": null,
- "source": "biblatex",
- "type": "name"
- },
- "shorthand": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "shorthandintro": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "shortjournal": {
- "csl": "container-title-short",
- "source": "biblatex",
- "type": "literal"
- },
- "shortseries": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "shortsubarchive": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "shorttitle": {
- "csl": "title-short",
- "source": "biblatex",
- "type": "literal"
- },
- "sig1": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "sig2": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "sig3": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "sig4": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "size": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "slaccitation": {
- "csl": null,
- "source": "apsrev4-2.bst"
- },
- "sort-short": {
- "csl": null,
- "source": "glsplain.bst"
- },
- "sort-word": {
- "csl": null,
- "source": "glsplain.bst"
- },
- "sortas": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "sortkey": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "sortname": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "name"
- },
- "sortshorthand": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "sorttitle": {
- "csl": null,
- "notes": "Not supported.",
- "source": "biblatex",
- "type": "literal"
- },
- "sortyear": {
- "csl": null,
- "source": "biblatex",
- "type": "integer"
- },
- "source": {
- "csl": null,
- "source": "figbib.bst"
- },
- "source1": {
- "csl": null,
- "source": "figbib1.bst"
- },
- "specialitycode": {
- "csl": null,
- "source": "gost2003.bst"
- },
- "ssedition": {
- "csl": null,
- "source": "jox.bst"
- },
- "standard": {
- "csl": null,
- "source": "udesoftec.bst"
- },
- "startnumber": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "startvolume": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "startyear": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "state": {
- "csl": null,
- "source": "address-html.bst"
- },
- "status": {
- "csl": null,
- "source": "amsra.bst"
- },
- "stdcode": {
- "csl": null,
- "source": "seuthesix.bst"
- },
- "stitle": {
- "csl": null,
- "source": "jox.bst"
- },
- "street": {
- "csl": null,
- "source": "adrbirthday.bst"
- },
- "subarchive": {
- "csl": null,
- "source": "jurabib.bst"
- },
- "subtitle": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "symposium": {
- "csl": null,
- "source": "apacite.bst"
- },
- "text": {
- "csl": null,
- "source": "apacite.bst"
- },
- "timestamp": {
- "csl": null,
- "source": "export.bst"
- },
- "title": {
- "csl": "title",
- "source": "bibtex",
- "type": "literal"
- },
- "titleaddon": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "titlenote": {
- "csl": null,
- "source": "aomalpha.bst"
- },
- "totalpages": {
- "csl": null,
- "source": "aomalpha.bst"
- },
- "transissue": {
- "csl": null,
- "source": "iopart-num.bst"
- },
- "transjournal": {
- "csl": null,
- "source": "iopart-num.bst"
- },
- "translation": {
- "csl": null,
- "source": "apsrev4-2.bst"
- },
- "translator": {
- "csl": "translator",
- "source": "biblatex",
- "type": "name"
- },
- "transnumber": {
- "csl": null,
- "source": "iopart-num.bst"
- },
- "transpages": {
- "csl": null,
- "source": "iopart-num.bst"
- },
- "transsection": {
- "csl": null,
- "source": "iopart-num.bst"
- },
- "transvolume": {
- "csl": null,
- "source": "iopart-num.bst"
- },
- "transyear": {
- "csl": null,
- "source": "iopart-num.bst"
- },
- "type": {
- "csl": "genre",
- "source": "bibtex",
- "type": "key"
- },
- "typeoflit": {
- "csl": null,
- "source": "seuthesis.bst"
- },
- "umfnumber": {
- "csl": null,
- "source": "thesnumb.bst"
- },
- "updated": {
- "csl": null,
- "source": "vancouver.bst"
- },
- "url": {
- "csl": "URL",
- "source": "biblatex",
- "type": "uri"
- },
- "urlaccessdate": {
- "csl": "accessed",
- "source": "abntex2-alf.bst"
- },
- "urldate": {
- "csl": "accessed",
- "source": "biblatex",
- "type": "date"
- },
- "urlnewline": {
- "csl": null,
- "source": "tugboat.bst"
- },
- "urltype": {
- "csl": null,
- "source": "asmeconf.bst"
- },
- "urlyear": {
- "csl": null,
- "source": "bath.bst"
- },
- "urn": {
- "csl": null,
- "source": "export.bst"
- },
- "usera": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "userb": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "userc": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "userd": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "usere": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "userf": {
- "csl": null,
- "source": "biblatex",
- "type": "literal"
- },
- "value": {
- "csl": null,
- "source": "bookdb.bst"
- },
- "venue": {
- "csl": "event-place",
- "source": "biblatex",
- "type": "literal"
- },
- "verba": {
- "csl": null,
- "source": "biblatex",
- "type": "verbatim"
- },
- "verbb": {
- "csl": null,
- "source": "biblatex",
- "type": "verbatim"
- },
- "verbc": {
- "csl": null,
- "source": "biblatex",
- "type": "verbatim"
- },
- "version": {
- "csl": "version",
- "source": "biblatex",
- "type": "literal"
- },
- "versiontype": {
- "csl": null,
- "source": "asmeconf.bst"
- },
- "volformat": {
- "csl": null,
- "source": "jox.bst"
- },
- "volume": {
- "csl": "volume",
- "source": "bibtex",
- "type": "integer"
- },
- "volumes": {
- "csl": "number-of-volumes",
- "source": "biblatex",
- "type": "integer"
- },
- "volumetitle": {
- "csl": null,
- "source": "iopart-num.bst"
- },
- "word": {
- "csl": null,
- "source": "vancouver.bst"
- },
- "xdata": {
- "csl": null,
- "notes": "inherits fields from other items.",
- "source": "biblatex",
- "type": "entrykey"
- },
- "xid": {
- "csl": null,
- "source": "amsra.bst"
- },
- "xref": {
- "csl": null,
- "notes": "Establishes a parent-child relationship in biblatex, but without inheriting data => no need to parse this.",
- "source": "biblatex",
- "type": "entrykey"
- },
- "year": {
- "csl": null,
- "notes": "Used only when `date` is empty.",
- "source": "bibtex",
- "type": "date"
- },
- "year-presented": {
- "csl": null,
- "source": "abntex2-alf.bst"
- },
- "yearcomp": {
- "csl": null,
- "source": "achicago.bst"
- },
- "yearfiled": {
- "csl": null,
- "source": "IEEEtran.bst"
- },
- "zblnumber": {
- "csl": null,
- "source": "aomalpha.bst"
- },
- "zip": {
- "csl": null,
- "source": "adrbirthday.bst"
- }
- },
- "macros": {
- "jan": {
- "value": "1",
- "notes": "Use numeric form for easy conversion.",
- "source": "bibtex"
- },
- "feb": {
- "value": "2",
- "source": "bibtex"
- },
- "mar": {
- "value": "3",
- "source": "bibtex"
- },
- "apr": {
- "value": "4",
- "source": "bibtex"
- },
- "may": {
- "value": "5",
- "source": "bibtex"
- },
- "jun": {
- "value": "6",
- "source": "bibtex"
- },
- "jul": {
- "value": "7",
- "source": "bibtex"
- },
- "aug": {
- "value": "8",
- "source": "bibtex"
- },
- "sep": {
- "value": "9",
- "source": "bibtex"
- },
- "oct": {
- "value": "10",
- "source": "bibtex"
- },
- "nov": {
- "value": "11",
- "source": "bibtex"
- },
- "dec": {
- "value": "12",
- "source": "bibtex"
- },
- "acmcs": {
- "value": "ACM Computing Surveys",
- "source": "bibtex"
- },
- "acta": {
- "value": "Acta Informatica",
- "source": "bibtex"
- },
- "cacm": {
- "value": "Communications of the ACM",
- "source": "bibtex"
- },
- "ibmjrd": {
- "value": "IBM Journal of Research and Development",
- "source": "bibtex"
- },
- "ibmsj": {
- "value": "IBM Systems Journal",
- "source": "bibtex"
- },
- "ieeese": {
- "value": "IEEE Transactions on Software Engineering",
- "source": "bibtex"
- },
- "ieeetc": {
- "value": "IEEE Transactions on Computers",
- "source": "bibtex"
- },
- "ieeetcad": {
- "value": "IEEE Transactions on Computer-Aided Design of Integrated Circuits",
- "source": "bibtex"
- },
- "ipl": {
- "value": "Information Processing Letters",
- "source": "bibtex"
- },
- "jacm": {
- "value": "Journal of the ACM",
- "source": "bibtex"
- },
- "jcss": {
- "value": "Journal of Computer and System Sciences",
- "source": "bibtex"
- },
- "scp": {
- "value": "Science of Computer Programming",
- "source": "bibtex"
- },
- "sicomp": {
- "value": "SIAM Journal on Computing",
- "source": "bibtex"
- },
- "tocs": {
- "value": "ACM Transactions on Computer Systems",
- "source": "bibtex"
- },
- "tods": {
- "value": "ACM Transactions on Database Systems",
- "source": "bibtex"
- },
- "tog": {
- "value": "ACM Transactions on Graphics",
- "source": "bibtex"
- },
- "toms": {
- "value": "ACM Transactions on Mathematical Software",
- "source": "bibtex"
- },
- "toois": {
- "value": "ACM Transactions on Office Information Systems",
- "source": "bibtex"
- },
- "toplas": {
- "value": "ACM Transactions on Programming Languages and Systems",
- "source": "bibtex"
- },
- "tcs": {
- "value": "Theoretical Computer Science",
- "source": "bibtex"
- }
- }
-}
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-GB.xml b/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-GB.xml
index 11239a37d9e..2e1d04ada26 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-GB.xml
+++ b/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-GB.xml
@@ -11,7 +11,7 @@
<name>Rintze M. Zelle</name>
</translator>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
- <updated>2022-01-01T21:32:03-05:00</updated>
+ <updated>2022-03-12T05:55:43-05:00</updated>
</info>
<style-options punctuation-in-quote="false"/>
<date form="text">
@@ -309,39 +309,39 @@
</term>
<!-- SHORT LOCATOR FORMS -->
- <term name="appendix">
+ <term name="appendix" form="short">
<single>app.</single>
<multiple>apps.</multiple>
</term>
- <term name="article-locator">
+ <term name="article-locator" form="short">
<single>art.</single>
<multiple>arts.</multiple>
</term>
- <term name="elocation">
+ <term name="elocation" form="short">
<single>loc.</single>
<multiple>locs.</multiple>
</term>
- <term name="equation">
+ <term name="equation" form="short">
<single>eq.</single>
<multiple>eqs.</multiple>
</term>
- <term name="rule">
+ <term name="rule" form="short">
<single>r.</single>
<multiple>rr.</multiple>
</term>
- <term name="scene">
+ <term name="scene" form="short">
<single>sc.</single>
<multiple>scs.</multiple>
</term>
- <term name="table">
+ <term name="table" form="short">
<single>tbl.</single>
<multiple>tbls.</multiple>
</term>
- <term name="timestamp"> <!-- generally blank -->
+ <term name="timestamp" form="short"> <!-- generally blank -->
<single></single>
<multiple></multiple>
</term>
- <term name="title-locator">
+ <term name="title-locator" form="short">
<single>tit.</single>
<multiple>tits.</multiple>
</term>
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-US.xml b/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-US.xml
index 03ffc42f9f6..7fa0207e6a0 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-US.xml
+++ b/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-US.xml
@@ -17,7 +17,7 @@
<name>Brenton M. Wiernik</name>
</translator>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
- <updated>2022-01-01T21:32:03-05:00</updated>
+ <updated>2022-03-12T05:55:43-05:00</updated>
</info>
<style-options punctuation-in-quote="true"/>
<date form="text">
@@ -315,39 +315,39 @@
</term>
<!-- SHORT LOCATOR FORMS -->
- <term name="appendix">
+ <term name="appendix" form="short">
<single>app.</single>
<multiple>apps.</multiple>
</term>
- <term name="article-locator">
+ <term name="article-locator" form="short">
<single>art.</single>
<multiple>arts.</multiple>
</term>
- <term name="elocation">
+ <term name="elocation" form="short">
<single>loc.</single>
<multiple>locs.</multiple>
</term>
- <term name="equation">
+ <term name="equation" form="short">
<single>eq.</single>
<multiple>eqs.</multiple>
</term>
- <term name="rule">
+ <term name="rule" form="short">
<single>r.</single>
<multiple>rr.</multiple>
</term>
- <term name="scene">
+ <term name="scene" form="short">
<single>sc.</single>
<multiple>scs.</multiple>
</term>
- <term name="table">
+ <term name="table" form="short">
<single>tbl.</single>
<multiple>tbls.</multiple>
</term>
- <term name="timestamp"> <!-- generally blank -->
+ <term name="timestamp" form="short"> <!-- generally blank -->
<single></single>
<multiple></multiple>
</term>
- <term name="title-locator">
+ <term name="title-locator" form="short">
<single>tit.</single>
<multiple>tits.</multiple>
</term>
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-fr-FR.xml b/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-fr-FR.xml
index e6a71687d4b..c94055ef8aa 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-fr-FR.xml
+++ b/Master/texmf-dist/tex/latex/citation-style-language/locales/csl-locales-fr-FR.xml
@@ -4,8 +4,11 @@
<translator>
<name>Grégoire Colly</name>
</translator>
+ <translator>
+ <name>Collectif Zotero francophone</name>
+ </translator>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
- <updated>2022-01-01T21:32:03-05:00</updated>
+ <updated>2022-04-01T14:30:37+02:00</updated>
</info>
<style-options punctuation-in-quote="false" limit-day-ordinals-to-day-1="true"/>
<date form="text">
@@ -19,33 +22,33 @@
<date-part name="year"/>
</date>
<terms>
- <term name="advance-online-publication">advance online publication</term>
+ <term name="advance-online-publication">publication en ligne anticipée</term>
<term name="album">album</term>
- <term name="audio-recording">audio recording</term>
+ <term name="audio-recording">enregistrement audio</term>
<term name="film">film</term>
- <term name="henceforth">henceforth</term>
- <term name="loc-cit">loc. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
- <term name="no-place">no place</term>
- <term name="no-place" form="short">n.p.</term>
- <term name="no-publisher">no publisher</term> <!-- sine nomine -->
- <term name="no-publisher" form="short">n.p.</term>
- <term name="on">on</term>
- <term name="op-cit">op. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
- <term name="original-work-published">original work published</term>
+ <term name="henceforth">désormais</term>
+ <term name="loc-cit">loc.&#160;cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
+ <term name="no-place">sans lieu</term>
+ <term name="no-place" form="short">s.&#160;l.</term>
+ <term name="no-publisher">sans nom</term> <!-- sine nomine -->
+ <term name="no-publisher" form="short">s.&#160;n.</term>
+ <term name="on">sur</term>
+ <term name="op-cit">op.&#160;cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
+ <term name="original-work-published">édition originale</term>
<term name="personal-communication">communication personnelle</term>
<term name="podcast">podcast</term>
- <term name="podcast-episode">podcast episode</term>
- <term name="preprint">preprint</term>
- <term name="radio-broadcast">radio broadcast</term>
- <term name="radio-series">radio series</term>
- <term name="radio-series-episode">radio series episode</term>
- <term name="special-issue">special issue</term>
- <term name="special-section">special section</term>
- <term name="television-broadcast">television broadcast</term>
- <term name="television-series">television series</term>
- <term name="television-series-episode">television series episode</term>
- <term name="video">video</term>
- <term name="working-paper">working paper</term>
+ <term name="podcast-episode">épisode de podcast</term>
+ <term name="preprint">prépublication</term>
+ <term name="radio-broadcast">émission de radio</term>
+ <term name="radio-series">série radiophonique</term>
+ <term name="radio-series-episode">épisode de série radiophonique</term>
+ <term name="special-issue">numéro spécial</term>
+ <term name="special-section">section spéciale</term>
+ <term name="television-broadcast">émission de télévision</term>
+ <term name="television-series">série télévisée</term>
+ <term name="television-series-episode">épisode de série télévisée</term>
+ <term name="video">vidéo</term>
+ <term name="working-paper">document de travail</term>
<term name="accessed">consulté le</term>
<term name="and">et</term>
<term name="and others">et autres</term>
@@ -88,74 +91,74 @@
<term name="version">version</term>
<!-- LONG ITEM TYPE FORMS -->
- <term name="article">preprint</term>
- <term name="article-journal">journal article</term>
- <term name="article-magazine">magazine article</term>
- <term name="article-newspaper">newspaper article</term>
- <term name="bill">bill</term>
- <term name="book">book</term>
- <term name="broadcast">broadcast</term>
- <term name="chapter">book chapter</term>
- <term name="classic">classic</term>
+ <term name="article">article</term>
+ <term name="article-journal">article de revue</term>
+ <term name="article-magazine">article de magazine</term>
+ <term name="article-newspaper">article de presse</term>
+ <term name="bill">projet de loi</term>
+ <term name="book">livre</term>
+ <term name="broadcast">émission</term>
+ <term name="chapter">chapitre de livre</term>
+ <term name="classic">classique</term>
<term name="collection">collection</term>
- <term name="dataset">dataset</term>
+ <term name="dataset">jeu de données</term>
<term name="document">document</term>
- <term name="entry">entry</term>
- <term name="entry-dictionary">dictionary entry</term>
- <term name="entry-encyclopedia">encyclopedia entry</term>
- <term name="event">event</term>
+ <term name="entry">entrée</term>
+ <term name="entry-dictionary">entrée de dictionnaire</term>
+ <term name="entry-encyclopedia">entrée d'encyclopédie</term>
+ <term name="event">événement</term>
<!-- figure is in the list of locator terms -->
- <term name="graphic">graphic</term>
- <term name="hearing">hearing</term>
+ <term name="graphic">image</term>
+ <term name="hearing">audience</term>
<term name="interview">interview</term>
- <term name="legal_case">legal case</term>
- <term name="legislation">legislation</term>
- <term name="manuscript">manuscript</term>
- <term name="map">map</term>
- <term name="motion_picture">video recording</term>
- <term name="musical_score">musical score</term>
+ <term name="legal_case">affaire</term>
+ <term name="legislation">acte juridique</term>
+ <term name="manuscript">manuscrit</term>
+ <term name="map">carte</term>
+ <term name="motion_picture">enregistrement vidéo</term>
+ <term name="musical_score">partition</term>
<term name="pamphlet">pamphlet</term>
- <term name="paper-conference">conference paper</term>
- <term name="patent">patent</term>
- <term name="performance">performance</term>
- <term name="periodical">periodical</term>
+ <term name="paper-conference">article de colloque</term>
+ <term name="patent">brevet</term>
+ <term name="performance">interprétation</term>
+ <term name="periodical">périodique</term>
<term name="personal_communication">communication personnelle</term>
- <term name="post">post</term>
- <term name="post-weblog">blog post</term>
- <term name="regulation">regulation</term>
- <term name="report">report</term>
- <term name="review">review</term>
- <term name="review-book">book review</term>
- <term name="software">software</term>
- <term name="song">audio recording</term>
- <term name="speech">presentation</term>
- <term name="standard">standard</term>
- <term name="thesis">thesis</term>
- <term name="treaty">treaty</term>
- <term name="webpage">webpage</term>
+ <term name="post">billet</term>
+ <term name="post-weblog">billet de blog</term>
+ <term name="regulation">règlement</term>
+ <term name="report">rapport</term>
+ <term name="review">recension</term>
+ <term name="review-book">recension de livre</term>
+ <term name="software">logiciel</term>
+ <term name="song">chanson</term>
+ <term name="speech">présentation</term>
+ <term name="standard">norme</term>
+ <term name="thesis">thèse</term>
+ <term name="treaty">traité</term>
+ <term name="webpage">page web</term>
<!-- SHORT ITEM TYPE FORMS -->
- <term name="article-journal" form="short">journal art.</term>
- <term name="article-magazine" form="short">mag. art.</term>
- <term name="article-newspaper" form="short">newspaper art.</term>
- <term name="book" form="short">bk.</term>
- <term name="chapter" form="short">bk. chap.</term>
+ <term name="article-journal" form="short">art. de revue</term>
+ <term name="article-magazine" form="short">art. de mag.</term>
+ <term name="article-newspaper" form="short">art. de presse</term>
+ <term name="book" form="short">liv.</term>
+ <term name="chapter" form="short">chap. de liv.</term>
<term name="document" form="short">doc.</term>
<!-- figure is in the list of locator terms -->
<term name="graphic" form="short">graph.</term>
<term name="interview" form="short">interv.</term>
- <term name="manuscript" form="short">MS</term>
- <term name="motion_picture" form="short">video rec.</term>
- <term name="report" form="short">rep.</term>
- <term name="review" form="short">rev.</term>
- <term name="review-book" form="short">bk. rev.</term>
- <term name="song" form="short">audio rec.</term>
+ <term name="manuscript" form="short">ms</term>
+ <term name="motion_picture" form="short">enr. vidéo</term>
+ <term name="report" form="short">rap.</term>
+ <term name="review" form="short">recens.</term>
+ <term name="review-book" form="short">recens. de liv.</term>
+ <term name="song" form="short">enr. audio</term>
<!-- HISTORICAL ERA TERMS -->
<term name="ad">apr. J.-C.</term>
<term name="bc">av. J.-C.</term>
- <term name="bce">BCE</term>
- <term name="ce">CE</term>
+ <term name="bce">av. n. è.</term>
+ <term name="ce">n. è.</term>
<!-- PUNCTUATION -->
<term name="open-quote">«&#160;</term>
@@ -163,15 +166,15 @@
<term name="open-inner-quote">“</term>
<term name="close-inner-quote">”</term>
<term name="page-range-delimiter">&#8209;</term> <!-- non-breaking hyphen -->
- <term name="colon">:</term>
+ <term name="colon">&#160;:</term>
<term name="comma">,</term>
- <term name="semicolon">;</term>
+ <term name="semicolon">&#160;;</term>
<!-- ORDINALS -->
<term name="ordinal">ᵉ</term>
<term name="ordinal-01" gender-form="feminine" match="whole-number">ʳᵉ</term>
<term name="ordinal-01" gender-form="masculine" match="whole-number">ᵉʳ</term>
-
+
<!-- LONG ORDINALS -->
<term name="long-ordinal-01">premier</term>
<term name="long-ordinal-02">deuxième</term>
@@ -185,49 +188,49 @@
<term name="long-ordinal-10">dixième</term>
<!-- LONG LOCATOR FORMS -->
- <term name="act">
- <single>act</single>
- <multiple>acts</multiple>
+ <term name="act">
+ <single>acte</single>
+ <multiple>actes</multiple>
</term>
- <term name="appendix">
- <single>appendix</single>
- <multiple>appendices</multiple>
+ <term name="appendix">
+ <single>appendice</single>
+ <multiple>appendices</multiple>
</term>
- <term name="article-locator">
+ <term name="article-locator">
<single>article</single>
- <multiple>articles</multiple>
+ <multiple>articles</multiple>
</term>
- <term name="canon">
+ <term name="canon">
<single>canon</single>
- <multiple>canons</multiple>
+ <multiple>canons</multiple>
</term>
- <term name="elocation">
- <single>location</single>
- <multiple>locations</multiple>
+ <term name="elocation">
+ <single>emplacement</single>
+ <multiple>emplacements</multiple>
</term>
- <term name="equation">
- <single>equation</single>
- <multiple>equations</multiple>
+ <term name="equation">
+ <single>équation</single>
+ <multiple>équations</multiple>
</term>
- <term name="rule">
- <single>rule</single>
- <multiple>rules</multiple>
+ <term name="rule">
+ <single>règle</single>
+ <multiple>règles</multiple>
</term>
- <term name="scene">
- <single>scene</single>
- <multiple>scenes</multiple>
+ <term name="scene">
+ <single>scène</single>
+ <multiple>scènes</multiple>
</term>
- <term name="table">
- <single>table</single>
- <multiple>tables</multiple>
+ <term name="table">
+ <single>tableau</single>
+ <multiple>tableaux</multiple>
</term>
<term name="timestamp"> <!-- generally blank -->
<single></single>
- <multiple></multiple>
+ <multiple></multiple>
</term>
- <term name="title-locator">
- <single>title</single>
- <multiple>titles</multiple>
+ <term name="title-locator">
+ <single>titre</single>
+ <multiple>titres</multiple>
</term>
<term name="book">
<single>livre</single>
@@ -299,41 +302,41 @@
</term>
<!-- SHORT LOCATOR FORMS -->
- <term name="appendix">
- <single>app.</single>
- <multiple>apps.</multiple>
+ <term name="appendix">
+ <single>append.</single>
+ <multiple>append.</multiple>
</term>
- <term name="article-locator">
+ <term name="article-locator">
<single>art.</single>
- <multiple>arts.</multiple>
+ <multiple>art.</multiple>
</term>
- <term name="elocation">
- <single>loc.</single>
- <multiple>locs.</multiple>
+ <term name="elocation">
+ <single>emplact</single>
+ <multiple>emplact</multiple>
</term>
- <term name="equation">
+ <term name="equation">
<single>eq.</single>
- <multiple>eqs.</multiple>
+ <multiple>eq.</multiple>
</term>
- <term name="rule">
- <single>r.</single>
- <multiple>rr.</multiple>
+ <term name="rule">
+ <single>règle</single>
+ <multiple>règles</multiple>
</term>
- <term name="scene">
+ <term name="scene">
<single>sc.</single>
- <multiple>scs.</multiple>
+ <multiple>sc.</multiple>
</term>
- <term name="table">
- <single>tbl.</single>
- <multiple>tbls.</multiple>
+ <term name="table">
+ <single>tab.</single>
+ <multiple>tab.</multiple>
</term>
<term name="timestamp"> <!-- generally blank -->
<single></single>
- <multiple></multiple>
+ <multiple></multiple>
</term>
- <term name="title-locator">
+ <term name="title-locator">
<single>tit.</single>
- <multiple>tits.</multiple>
+ <multiple>tit.</multiple>
</term>
<term name="book" form="short">liv.</term>
<term name="chapter" form="short">chap.</term>
@@ -386,56 +389,56 @@
<!-- LONG ROLE FORMS -->
<term name="chair">
- <single>chair</single>
- <multiple>chairs</multiple>
+ <single>président</single>
+ <multiple>présidents</multiple>
</term>
<term name="compiler">
- <single>compiler</single>
- <multiple>compilers</multiple>
+ <single>compilateur</single>
+ <multiple>compilateurs</multiple>
</term>
<term name="contributor">
- <single>contributor</single>
- <multiple>contributors</multiple>
+ <single>contributeur</single>
+ <multiple>contributeurs</multiple>
</term>
<term name="curator">
- <single>curator</single>
- <multiple>curators</multiple>
+ <single>commissaire</single>
+ <multiple>commissaires</multiple>
</term>
<term name="executive-producer">
- <single>executive producer</single>
- <multiple>executive producers</multiple>
+ <single>producteur exécutif</single>
+ <multiple>producteurs exécutifs</multiple>
</term>
<term name="guest">
- <single>guest</single>
- <multiple>guests</multiple>
+ <single>invité</single>
+ <multiple>invités</multiple>
</term>
<term name="host">
- <single>host</single>
- <multiple>hosts</multiple>
+ <single>hôte</single>
+ <multiple>hôtes</multiple>
</term>
<term name="narrator">
- <single>narrator</single>
- <multiple>narrators</multiple>
+ <single>narrateur</single>
+ <multiple>narrateurs</multiple>
</term>
<term name="organizer">
- <single>organizer</single>
- <multiple>organizers</multiple>
+ <single>organisateur</single>
+ <multiple>organisateurs</multiple>
</term>
<term name="performer">
- <single>performer</single>
- <multiple>performers</multiple>
+ <single>interprète</single>
+ <multiple>interprètes</multiple>
</term>
<term name="producer">
- <single>producer</single>
- <multiple>producers</multiple>
+ <single>producteur</single>
+ <multiple>producteurs</multiple>
</term>
<term name="script-writer">
- <single>writer</single>
- <multiple>writers</multiple>
+ <single>scénariste</single>
+ <multiple>scénaristes</multiple>
</term>
<term name="series-creator">
- <single>series creator</single>
- <multiple>series creators</multiple>
+ <single>créateur de série</single>
+ <multiple>créateurs de série</multiple>
</term>
<term name="director">
<single>réalisateur</single>
@@ -464,44 +467,44 @@
<!-- SHORT ROLE FORMS -->
<term name="compiler" form="short">
- <single>comp.</single>
- <multiple>comps.</multiple>
+ <single>compil.</single>
+ <multiple>compil.</multiple>
</term>
<term name="contributor" form="short">
<single>contrib.</single>
- <multiple>contribs.</multiple>
+ <multiple>contrib.</multiple>
</term>
<term name="curator" form="short">
- <single>cur.</single>
- <multiple>curs.</multiple>
+ <single>commiss.</single>
+ <multiple>commiss.</multiple>
</term>
<term name="executive-producer" form="short">
- <single>exec. prod.</single>
- <multiple>exec. prods.</multiple>
+ <single>prod. exé.</single>
+ <multiple>prod. exé.</multiple>
</term>
<term name="narrator" form="short">
<single>narr.</single>
- <multiple>narrs.</multiple>
+ <multiple>narr.</multiple>
</term>
<term name="organizer" form="short">
<single>org.</single>
- <multiple>orgs.</multiple>
+ <multiple>org.</multiple>
</term>
<term name="performer" form="short">
- <single>perf.</single>
- <multiple>perfs.</multiple>
+ <single>interpr.</single>
+ <multiple>interpr.</multiple>
</term>
<term name="producer" form="short">
<single>prod.</single>
- <multiple>prods.</multiple>
+ <multiple>prod.</multiple>
</term>
<term name="script-writer" form="short">
- <single>writ.</single>
- <multiple>writs.</multiple>
+ <single>scénar.</single>
+ <multiple>scénar.</multiple>
</term>
<term name="series-creator" form="short">
- <single>cre.</single>
- <multiple>cres.</multiple>
+ <single>créat.</single>
+ <multiple>créat.</multiple>
</term>
<term name="director" form="short">
<single>réal.</single>
@@ -529,19 +532,19 @@
</term>
<!-- VERB ROLE FORMS -->
- <term name="chair" form="verb">chaired by</term>
- <term name="compiler" form="verb">compiled by</term>
- <term name="contributor" form="verb">with</term>
- <term name="curator" form="verb">curated by</term>
- <term name="executive-producer" form="verb">executive produced by</term>
- <term name="guest" form="verb">with guest</term>
- <term name="host" form="verb">hosted by</term>
- <term name="narrator" form="verb">narrated by</term>
- <term name="organizer" form="verb">organized by</term>
- <term name="performer" form="verb">performed by</term>
- <term name="producer" form="verb">produced by</term>
- <term name="script-writer" form="verb">written by</term>
- <term name="series-creator" form="verb">created by</term>
+ <term name="chair" form="verb">présidé par</term>
+ <term name="compiler" form="verb">compilé par</term>
+ <term name="contributor" form="verb">avec</term>
+ <term name="curator" form="verb">organisé par</term>
+ <term name="executive-producer" form="verb">production exécutive par</term>
+ <term name="guest" form="verb">avec pour invité</term>
+ <term name="host" form="verb">animé par</term>
+ <term name="narrator" form="verb">lu par</term>
+ <term name="organizer" form="verb">organisé par</term>
+ <term name="performer" form="verb">interprété par</term>
+ <term name="producer" form="verb">produit par</term>
+ <term name="script-writer" form="verb">scénario de</term>
+ <term name="series-creator" form="verb">créé par</term>
<term name="container-author" form="verb">par</term>
<term name="director" form="verb">réalisé par</term>
<term name="editor" form="verb">édité par</term>
@@ -554,18 +557,18 @@
<term name="editortranslator" form="verb">édité et traduit par</term>
<!-- SHORT VERB ROLE FORMS -->
- <term name="compiler" form="verb-short">comp. by</term>
- <term name="contributor" form="verb-short">w.</term>
- <term name="curator" form="verb-short">cur. by</term>
- <term name="executive-producer" form="verb-short">exec. prod. by</term>
- <term name="guest" form="verb-short">w. guest</term>
- <term name="host" form="verb-short">hosted by</term>
- <term name="narrator" form="verb-short">narr. by</term>
- <term name="organizer" form="verb-short">org. by</term>
- <term name="performer" form="verb-short">perf. by</term>
- <term name="producer" form="verb-short">prod. by</term>
- <term name="script-writer" form="verb-short">writ. by</term>
- <term name="series-creator" form="verb-short">cre. by</term>
+ <term name="compiler" form="verb-short">compil. par</term>
+ <term name="contributor" form="verb-short">ac</term>
+ <term name="curator" form="verb-short">org. par</term>
+ <term name="executive-producer" form="verb-short">prod. exé. par</term>
+ <term name="guest" form="verb-short">ac pr inv.</term>
+ <term name="host" form="verb-short">anim. par</term>
+ <term name="narrator" form="verb-short">lu par</term>
+ <term name="organizer" form="verb-short">org. par</term>
+ <term name="performer" form="verb-short">interpr. par</term>
+ <term name="producer" form="verb-short">prod. par</term>
+ <term name="script-writer" form="verb-short">scénar. de</term>
+ <term name="series-creator" form="verb-short">créé par</term>
<term name="director" form="verb-short">réal. par</term>
<term name="editor" form="verb-short">éd. par</term>
<term name="editorial-director" form="verb-short">ss la dir. de</term>
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/american-chemical-society.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/american-chemical-society.csl
index bf75b2d8de7..cde0e0c50ff 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/american-chemical-society.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/american-chemical-society.csl
@@ -21,7 +21,7 @@
<category citation-format="numeric"/>
<category field="chemistry"/>
<summary>The American Chemical Society style</summary>
- <updated>2021-05-22T12:00:00+00:00</updated>
+ <updated>2022-05-04T19:44:25-04:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="en">
@@ -250,14 +250,17 @@
</group>
</else-if>
<else-if type="webpage">
- <group delimiter=" ">
- <text variable="title"/>
- <text variable="URL"/>
- <date variable="accessed" prefix="(accessed " suffix=")" delimiter=" ">
- <date-part name="year"/>
- <date-part name="month" prefix="-" form="numeric-leading-zeros"/>
- <date-part name="day" prefix="-" form="numeric-leading-zeros"/>
- </date>
+ <group delimiter=". ">
+ <text variable="title" font-style="italic"/>
+ <text variable="container-title"/>
+ <group delimiter=" ">
+ <text variable="URL"/>
+ <date variable="accessed" prefix="(accessed " suffix=")">
+ <date-part name="year"/>
+ <date-part name="month" prefix="-" form="numeric-leading-zeros"/>
+ <date-part name="day" prefix="-" form="numeric-leading-zeros"/>
+ </date>
+ </group>
</group>
</else-if>
<else>
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/american-medical-association.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/american-medical-association.csl
index 44520822d04..b36bbb5488e 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/american-medical-association.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/american-medical-association.csl
@@ -27,7 +27,7 @@
<category citation-format="numeric"/>
<category field="medicine"/>
<summary>The American Medical Association style as used in JAMA. Version 11 as per November-2019.</summary>
- <updated>2021-10-28T13:38:04+00:00</updated>
+ <updated>2022-03-17T08:48:24+00:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="en">
@@ -86,7 +86,7 @@
</macro>
<macro name="title">
<choose>
- <if type="bill book graphic legal_case legislation motion_picture report song" match="any">
+ <if type="bill book graphic legal_case legislation motion_picture report song thesis" match="any">
<text variable="title" font-style="italic" text-case="title"/>
</if>
<else>
@@ -247,6 +247,15 @@
<text variable="event-place"/>
</group>
</else-if>
+ <else-if type="thesis" match="any">
+ <group delimiter=". " prefix=" " suffix=".">
+ <text variable="genre"/>
+ <group delimiter="; ">
+ <text variable="publisher"/>
+ <date date-parts="year" form="text" variable="issued"/>
+ </group>
+ </group>
+ </else-if>
<else>
<text macro="editor" prefix=" " suffix="."/>
<group prefix=" " suffix=".">
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/american-sociological-association.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/american-sociological-association.csl
index 6657716cde8..cf4ab0fc0d2 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/american-sociological-association.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/american-sociological-association.csl
@@ -16,7 +16,7 @@
<category citation-format="author-date"/>
<category field="sociology"/>
<summary>The ASA style following the 6th edition of the Style Guide</summary>
- <updated>2020-09-18T10:38:12+00:00</updated>
+ <updated>2022-05-08T17:48:56-04:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="en">
@@ -125,13 +125,25 @@
<macro name="year-date">
<choose>
<if variable="issued">
- <group delimiter=" ">
- <date variable="original-date" form="numeric" date-parts="year" prefix="[" suffix="]"/>
- <date variable="issued" form="numeric" date-parts="year"/>
+ <group>
+ <group delimiter=" ">
+ <date variable="original-date" form="numeric" date-parts="year" prefix="[" suffix="]"/>
+ <date variable="issued" form="numeric" date-parts="year"/>
+ </group>
+ <text variable="year-suffix"/>
</group>
</if>
+ <else-if variable="status">
+ <group>
+ <text variable="status" text-case="lowercase"/>
+ <text variable="year-suffix" prefix="-"/>
+ </group>
+ </else-if>
<else>
- <text term="no date" form="short"/>
+ <group>
+ <text term="no date" form="short"/>
+ <text variable="year-suffix" prefix="-"/>
+ </group>
</else>
</choose>
</macro>
@@ -140,6 +152,12 @@
<if variable="issued">
<date variable="issued" form="numeric" date-parts="year"/>
</if>
+ <else-if variable="status">
+ <group>
+ <text variable="status" text-case="lowercase"/>
+ <text variable="year-suffix" prefix="-"/>
+ </group>
+ </else-if>
<else>
<text term="no date" form="short"/>
</else>
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/apa.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/apa.csl
index 5ba01a94235..43a8e5932fe 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/apa.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/apa.csl
@@ -14,7 +14,7 @@
<category citation-format="author-date"/>
<category field="psychology"/>
<category field="generic-base"/>
- <updated>2022-01-31T09:43:56-05:00</updated>
+ <updated>2022-08-11T09:14:19-04:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="en">
@@ -320,8 +320,8 @@
<!-- General categories of item types:
Periodical: article-journal article-magazine article-newspaper post-weblog review review-book
Periodical or Booklike: paper-conference
- Booklike: article book broadcast chapter dataset entry entry-dictionary entry-encyclopedia figure
- graphic interview manuscript map motion_picture musical_score pamphlet patent
+ Booklike: article book broadcast chapter dataset entry entry-dictionary entry-encyclopedia figure
+ graphic interview manuscript map motion_picture musical_score pamphlet patent
personal_communication report song speech thesis post webpage
Legal: bill legal_case legislation treaty
-->
@@ -389,7 +389,7 @@
</if>
<else-if type="interview personal_communication" match="any">
<choose>
- <!-- These variables indicate that the letter is retrievable by the reader.
+ <!-- These variables indicate that the letter is retrievable by the reader.
If not, then use the APA in-text-only personal communication format -->
<if variable="archive container-title DOI publisher URL" match="none">
<group delimiter=", ">
@@ -470,7 +470,7 @@
</if>
</choose>
</else-if>
- <!-- Only year: article article-journal book chapter entry entry-dictionary entry-encyclopedia dataset figure graphic
+ <!-- Only year: article article-journal book chapter entry entry-dictionary entry-encyclopedia dataset figure graphic
manuscript map musical_score paper-conference[published] patent report review review-book thesis -->
</choose>
</if>
@@ -530,7 +530,7 @@
<if type="interview personal_communication" match="any">
<choose>
<if variable="archive container-title DOI publisher URL" match="none">
- <!-- These variables indicate that the communication is retrievable by the reader.
+ <!-- These variables indicate that the communication is retrievable by the reader.
If not, then use the in-text-only personal communication format -->
<date variable="issued" form="text"/>
</if>
@@ -1295,7 +1295,7 @@
<macro name="reviewed-title">
<choose>
<if variable="reviewed-title">
- <!-- Not possible to distinguish TV series episode from other reviewed
+ <!-- Not possible to distinguish TV series episode from other reviewed
works [Ex. 69] -->
<text variable="reviewed-title" font-style="italic"/>
</if>
@@ -1553,14 +1553,14 @@
</macro>
<macro name="event">
<choose>
- <if variable="event">
+ <if variable="event event-title" match="any">
<!-- To prevent Zotero from printing event-place due to its double-mapping of all 'place' to
both publisher-place and event-place. Remove this 'choose' when that is changed. -->
<choose>
<if variable="collection-editor editor editorial-director issue page volume" match="none">
<!-- Don't print event info if published in a proceedings -->
<group delimiter=", ">
- <text variable="event"/>
+ <text macro="event-title"/>
<text variable="event-place"/>
</group>
</if>
@@ -1568,6 +1568,20 @@
</if>
</choose>
</macro>
+ <macro name="event-title">
+ <choose>
+ <!-- TODO: We expect "event-title" to be used,
+ but processors and applications may not be updated yet.
+ This macro ensures that either "event" or "event-title" can be accpeted.
+ Remove if procesor logic and application adoption can handle this. -->
+ <if variable="event-title">
+ <text variable="event-title"/>
+ </if>
+ <else>
+ <text variable="event"/>
+ </else>
+ </choose>
+ </macro>
<!-- After 'source', APA also prints publication history (original publication, reprint info, retraction info) -->
<macro name="publication-history">
<choose>
@@ -1575,7 +1589,7 @@
<group prefix="(" suffix=")">
<choose>
<if variable="references">
- <!-- This provides the option for more elaborate description
+ <!-- This provides the option for more elaborate description
of publication history, such as full "reprinted" references
(examples 11, 43, 44) or retracted references -->
<text variable="references"/>
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-author-date.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-author-date.csl
index 8c133354b38..f8c640cd7fb 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-author-date.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-author-date.csl
@@ -45,6 +45,30 @@
<term name="translator" form="short">trans.</term>
</terms>
</locale>
+ <locale xml:lang="pt-PT">
+ <terms>
+ <term name="accessed">acedido a</term>
+ </terms>
+ </locale>
+ <locale xml:lang="pt">
+ <terms>
+ <term name="editor" form="verb">editado por</term>
+ <term name="editor" form="verb-short">ed.</term>
+ <term name="container-author" form="verb">por</term>
+ <term name="translator" form="verb-short">traduzido por</term>
+ <term name="translator" form="short">trad.</term>
+ <term name="editortranslator" form="verb">editado e traduzido por</term>
+ <term name="and">e</term>
+ <term name="no date" form="long">s.d</term>
+ <term name="no date" form="short">s.d.</term>
+ <term name="in">em</term>
+ <term name="at">em</term>
+ <term name="by">por</term>
+ <!-- PUNCTUATION -->
+ <term name="open-quote">"</term>
+ <term name="close-quote">"</term>
+ </terms>
+ </locale>
<macro name="secondary-contributors">
<choose>
<if type="chapter entry-dictionary entry-encyclopedia paper-conference" match="none">
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-fullnote-bibliography.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-fullnote-bibliography.csl
index fb2f1ae9430..da4969f115d 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-fullnote-bibliography.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-fullnote-bibliography.csl
@@ -34,7 +34,7 @@
<category citation-format="note"/>
<category field="generic-base"/>
<summary>Chicago format with full notes and bibliography</summary>
- <updated>2022-01-16T14:46:01-05:00</updated>
+ <updated>2017-10-12T12:00:00+00:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="en">
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-note-bibliography.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-note-bibliography.csl
index 6ec4a295343..83da96cb4de 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-note-bibliography.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/chicago-note-bibliography.csl
@@ -34,7 +34,7 @@
<category citation-format="note"/>
<category field="generic-base"/>
<summary>Chicago format with short notes and bibliography</summary>
- <updated>2022-01-16T14:46:01-05:00</updated>
+ <updated>2017-10-12T12:00:00+00:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="en">
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/harvard-cite-them-right.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/harvard-cite-them-right.csl
index 2800678205e..360f0833c64 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/harvard-cite-them-right.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/harvard-cite-them-right.csl
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-GB">
<info>
- <title>Cite Them Right 11th edition - Harvard</title>
+ <title>Cite Them Right 12th edition - Harvard</title>
<id>http://www.zotero.org/styles/harvard-cite-them-right</id>
<link href="http://www.zotero.org/styles/harvard-cite-them-right" rel="self"/>
- <link href="http://www.zotero.org/styles/harvard-cite-them-right-10th-edition" rel="template"/>
+ <link href="http://www.zotero.org/styles/harvard-cite-them-right-11th-edition" rel="template"/>
<link href="http://www.citethemrightonline.com/" rel="documentation"/>
<author>
<name>Patrick O'Brien</name>
@@ -12,7 +12,7 @@
<category citation-format="author-date"/>
<category field="generic-base"/>
<summary>Harvard according to Cite Them Right, 11th edition.</summary>
- <updated>2021-09-01T07:43:59+00:00</updated>
+ <updated>2022-06-28T22:44:10-04:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="en-GB">
@@ -34,7 +34,7 @@
<choose>
<if variable="container-author" match="none">
<names variable="editor translator" delimiter=", ">
- <name and="text" initialize-with="." name-as-sort-order="all"/>
+ <name and="text" initialize-with="."/>
<label form="short" prefix=" (" suffix=")"/>
</names>
</if>
@@ -98,7 +98,10 @@
<macro name="access">
<choose>
<if variable="DOI">
- <text variable="DOI" prefix="doi:"/>
+ <group delimiter=": ">
+ <text term="available at" text-case="capitalize-first"/>
+ <text variable="DOI" prefix="https://doi.org/"/>
+ </group>
</if>
<else-if variable="URL">
<text term="available at" suffix=": " text-case="capitalize-first"/>
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/ieee.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/ieee.csl
index a4c76e3d563..bff5b9197ed 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/ieee.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/ieee.csl
@@ -45,7 +45,7 @@
<category field="engineering"/>
<category field="generic-base"/>
<summary>IEEE style as per the 2021 guidelines, V 01.29.2021.</summary>
- <updated>2022-02-05T21:19:36-05:00</updated>
+ <updated>2021-05-07T00:52:46+10:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="en">
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/modern-language-association.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/modern-language-association.csl
index 11db55d19ac..fcb9845c4c0 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/modern-language-association.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/modern-language-association.csl
@@ -12,7 +12,7 @@
<category citation-format="author"/>
<category field="generic-base"/>
<summary>This style adheres to the MLA 9th edition handbook. Follows the structure of references as outlined in the MLA Manual closely</summary>
- <updated>2022-01-23T06:46:03-05:00</updated>
+ <updated>2022-04-24T09:59:40-04:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="en">
@@ -205,7 +205,7 @@
<if type="book chapter paper-conference motion_picture" match="any">
<date variable="issued" form="numeric" date-parts="year"/>
</if>
- <else-if type="article-journal article-magazine" match="any">
+ <else-if type="article-journal" match="any">
<date variable="issued" form="text" date-parts="year-month"/>
</else-if>
<else-if type="speech" match="none">
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/nature.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/nature.csl
index 2646cfe922c..08d9db6ae96 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/nature.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/nature.csl
@@ -15,7 +15,7 @@
<category field="generic-base"/>
<issn>0028-0836</issn>
<eissn>1476-4687</eissn>
- <updated>2019-10-08T13:18:12+00:00</updated>
+ <updated>2022-07-02T09:18:26-04:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<macro name="title">
@@ -37,7 +37,7 @@
</macro>
<macro name="access">
<choose>
- <if variable="volume"/>
+ <if variable="volume" type="article" match="any"/>
<else-if variable="DOI">
<text variable="DOI" prefix="doi:"/>
</else-if>
@@ -55,6 +55,28 @@
</group>
</group>
</if>
+ <else-if type="article">
+ <group delimiter=" ">
+ <choose>
+ <if variable="genre" match="any">
+ <text variable="genre" text-case="capitalize-first"/>
+ </if>
+ <else>
+ <text term="article" text-case="capitalize-first"/>
+ </else>
+ </choose>
+ <text term="at"/>
+ <choose>
+ <if variable="DOI" match="any">
+ <text variable="DOI" prefix="https://doi.org/"/>
+ </if>
+ <else>
+ <text variable="URL"/>
+ </else>
+ </choose>
+ <date date-parts="year" form="text" variable="issued" prefix="(" suffix=")"/>
+ </group>
+ </else-if>
<else-if type="report webpage post post-weblog" match="any">
<group delimiter=" ">
<text variable="URL"/>
diff --git a/Master/texmf-dist/tex/latex/citation-style-language/styles/vancouver.csl b/Master/texmf-dist/tex/latex/citation-style-language/styles/vancouver.csl
index edbb69b411a..71c92032289 100644
--- a/Master/texmf-dist/tex/latex/citation-style-language/styles/vancouver.csl
+++ b/Master/texmf-dist/tex/latex/citation-style-language/styles/vancouver.csl
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" page-range-format="minimal">
+<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" initialize-with-hyphen="false" page-range-format="minimal">
<info>
<title>Vancouver</title>
<id>http://www.zotero.org/styles/vancouver</id>