diff options
Diffstat (limited to 'Master/texmf-dist/scripts/citation-style-language/citeproc-node-choose.lua')
-rw-r--r-- | Master/texmf-dist/scripts/citation-style-language/citeproc-node-choose.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/citation-style-language/citeproc-node-choose.lua b/Master/texmf-dist/scripts/citation-style-language/citeproc-node-choose.lua index aa36e2c8c37..e48731406c5 100644 --- a/Master/texmf-dist/scripts/citation-style-language/citeproc-node-choose.lua +++ b/Master/texmf-dist/scripts/citation-style-language/citeproc-node-choose.lua @@ -1,3 +1,9 @@ +-- +-- Copyright (c) 2021-2022 Zeping Lee +-- Released under the MIT license. +-- Repository: https://github.com/zepinglee/citeproc-lua +-- + local choose = {} local element = require("citeproc-element") @@ -50,7 +56,7 @@ If.render = function (self, item, context) local locator_label = item.label or "page" local res = locator_label == locator_type if locator_type == "sub-verbo" then - res = locator_label == "sub verbo" + res = locator_label == "sub-verbo" or locator_label == "sub verbo" end table.insert(results, res) end |