From: "András Simonyi" <andras.simonyi@gmail.com>
To: emacs-orgmode list <emacs-orgmode@gnu.org>
Subject: [PATCH] oc-csl: Add support for the text and year citation styles
Date: Tue, 28 Sep 2021 15:12:10 +0200 [thread overview]
Message-ID: <CAOWRwxDcxZ=OQzwa5GyKzPtqwzJJaH70co27pgNv3nRYgJe83g@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 165 bytes --]
Dear All,
the attached patch adds support for the text (textual) and year
(year-only) citation styles in the CSL org-cite processor.
best wishes,
András
[-- Attachment #2: 0001-oc-csl-Add-support-for-the-text-and-year-citation-st.patch --]
[-- Type: text/x-patch, Size: 7419 bytes --]
From ce91f9332ed154fd14f36177bc6dd96cdda0690e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andr=C3=A1s=20Simonyi?= <andras.simonyi@gmail.com>
Date: Tue, 28 Sep 2021 11:45:13 +0200
Subject: [PATCH] oc-csl: Add support for the text and year citation styles
* lisp/oc-csl.el (org-cite-csl--create-structure-params): Introduce this new
function to map the extended list of supported citation styles and variants to
the corresponding citeproc-el citation structure creation parameters.
(org-cite-csl--no-affixes-p, org-cite-csl--capitalize-p,
org-cite-csl--no-author-p): Remove them since their functionality is provided
now by `org-cite-csl--create-structure-params'.
(org-cite-csl--parse-reference): Don't generate `suppress-author' cite
information as that is treated now by citeproc-el as a citation style.
(org-cite-csl--create-structure): Use `org-cite-csl--create-structure-params' to
generate style-dependent citation structure parameters.
---
lisp/oc-csl.el | 95 ++++++++++++++++++++++++++++++++++----------------
1 file changed, 64 insertions(+), 31 deletions(-)
diff --git a/lisp/oc-csl.el b/lisp/oc-csl.el
index 645b1c0f9..51d3d3d8a 100644
--- a/lisp/oc-csl.el
+++ b/lisp/oc-csl.el
@@ -54,7 +54,10 @@
;; The library supports the following citation styles:
;;
+;; - author (a), including caps (c), full (f), and caps-full (cf) variants,
;; - noauthor (na), including bare (b), caps (c) and bare-caps (bc) variants,
+;; - year (y), including a bare (b) variant,
+;; - text (t). including caps (c), full (f), and caps-full (cf) variants,
;; - default style, including bare (b), caps (c) and bare-caps (bc) variants.
;; CSL styles recognize "locator" in citation references' suffix. For example,
@@ -277,26 +280,54 @@ INFO is the export state, as a property list."
(citeproc-proc-style
(org-cite-csl--processor info))))
-(defun org-cite-csl--no-affixes-p (citation info)
- "Non-nil when CITATION should be exported without affix.
-INFO is the export data, as a property list."
- (pcase (org-cite-citation-style citation info)
- (`(,(or "noauthor" "na" `nil) . ,(or "bare" "b" "bare-caps" "bc")) t)
- (_ nil)))
-
-(defun org-cite-csl--capitalize-p (citation info)
- "Non-nil when CITATION should be capitalized.
-INFO is the export-data, as a property list."
- (pcase (org-cite-citation-style citation info)
- (`(,(or "noauthor" "na" `nil) . ,(or "caps" "c" "bare-caps" "bc")) t)
- (_ nil)))
-
-(defun org-cite-csl--no-author-p (reference info)
- "Non-nil when citation REFERENCE should be exported without author.
-INFO is the export data, as a property list."
- (pcase (org-cite-citation-style (org-element-property :parent reference) info)
- (`(,(or "noauthor" "na") . ,_) t)
- (_ nil)))
+(defun org-cite-csl--create-structure-params (citation info)
+ "Return citeproc structure creation params for CITATION object.
+STYLE is the citation style, as a string or nil. INFO is the export state, as
+a property list."
+ (let* ((style (org-cite-citation-style citation info)))
+ (pcase style
+ ;; "author" style.
+ (`(,(or "author" "a") . ,(or "caps" "c"))
+ '(:mode author-only :capitalize-first t :suppress-affixes t))
+ (`(,(or "author" "a") . ,(or "full" "f"))
+ '(:mode author-only :ignore-et-al t :suppress-affixes t))
+ (`(,(or "author" "a") . ,(or "caps-full" "cf"))
+ '(:mode author-only :capitalize-first t :ignore-et-al t :suppress-affixes t))
+ (`(,(or "author" "a") . ,_)
+ '(:mode author-only :suppress-affixes t))
+ ;; "noauthor" style.
+ (`(,(or "noauthor" "na") . ,(or "bare" "b"))
+ '(:mode suppress-author :suppress-affixes t))
+ (`(,(or "noauthor" "na") . ,(or "caps" "c"))
+ '(:mode suppress-author :capitalize-first t))
+ (`(,(or "noauthor" "na") . ,(or "bare-caps" "bc"))
+ '(:mode suppress-author :suppress-affixes t :capitalize-first t))
+ (`(,(or "noauthor" "na") . ,_)
+ '(:mode suppress-author))
+ ;; "year" style.
+ (`(,(or "year" "y") . ,(or "bare" "b"))
+ '(:mode year-only :suppress-affixes t))
+ (`(,(or "year" "y") . ,_)
+ '(:mode year-only))
+ ;; "text" style.
+ (`(,(or "text" "t") . ,(or "caps" "c"))
+ '(:mode textual :capitalize-first t))
+ (`(,(or "text" "t") . ,(or "full" "f"))
+ '(:mode textual :ignore-et-al t))
+ (`(,(or "text" "t") . ,(or "caps-full" "cf"))
+ '(:mode textual :ignore-et-al t :capitalize-first t))
+ (`(,(or "text" "t") . ,_)
+ '(:mode textual))
+ ;; Default "nil" style.
+ (`(,_ . ,(or "bare" "b"))
+ '(:suppress-affixes t))
+ (`(,_ . ,(or "caps" "c"))
+ '(:capitalize-first t))
+ (`(,_ . ,(or "bare-caps" "bc"))
+ '(:suppress-affixes t :capitalize-first t))
+ (`(,_ . ,_) nil)
+ ;; This should not happen.
+ (_ (error "Invalid style: %S" style)))))
(defun org-cite-csl--no-citelinks-p (info)
"Non-nil when export BACKEND should not create cite-reference links."
@@ -375,8 +406,8 @@ property in INFO."
INFO is the export state, as a property list.
-The result is a association list. Keys are: `id', `suppress-author', `prefix',
-`suffix', `location', `locator' and `label'."
+The result is a association list. Keys are: `id', `prefix',`suffix',
+`location', `locator' and `label'."
(let (label location-start locator-start location locator prefix suffix)
;; Parse suffix. Insert it in a temporary buffer to find
;; different parts: pre-label, label, locator, location (label +
@@ -434,8 +465,7 @@ The result is a association list. Keys are: `id', `suppress-author', `prefix',
(suffix . ,(funcall export suffix))
(locator . ,locator)
(label . ,label)
- (location . ,location)
- (suppress-author . ,(org-cite-csl--no-author-p reference info))))))
+ (location . ,location)))))
(defun org-cite-csl--create-structure (citation info)
"Create Citeproc structure for CITATION object.
@@ -465,11 +495,11 @@ INFO is the export state, as a property list."
(org-cite-adjust-note citation info)
(org-cite-wrap-citation citation info))
;; Return structure.
- (citeproc-citation-create
- :note-index (and footnote (org-export-get-footnote-number footnote info))
- :cites cites
- :capitalize-first (or footnote (org-cite-csl--capitalize-p citation info))
- :suppress-affixes (org-cite-csl--no-affixes-p citation info))))
+ (apply #'citeproc-citation-create
+ `(:note-index
+ ,(and footnote (org-export-get-footnote-number footnote info))
+ :cites ,cites
+ ,@(org-cite-csl--create-structure-params citation info)))))
(defun org-cite-csl--rendered-citations (info)
"Return the rendered citations as an association list.
@@ -578,8 +608,11 @@ property list."
:export-bibliography #'org-cite-csl-render-bibliography
:export-finalizer #'org-cite-csl-finalizer
:cite-styles
- '((("noauthor" "na") ("bare" "b") ("bare-caps" "bc") ("caps" "c"))
- (("nil") ("bare" "b") ("bare-caps" "bc") ("caps" "c"))))
+ '((("author" "a") ("full" "f") ("caps" "c") ("caps-full" "cf"))
+ (("noauthor" "na") ("bare" "b") ("caps" "c") ("bare-caps" "bc"))
+ (("year" "y") ("bare" "b"))
+ (("text" "t") ("caps" "c") ("full" "f") ("caps-full" "cf"))
+ (("nil") ("bare" "b") ("caps" "c") ("bare-caps" "bc"))))
(provide 'oc-csl)
;;; oc-csl.el ends here
--
2.25.1
next reply other threads:[~2021-09-28 13:40 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-28 13:12 András Simonyi [this message]
2021-09-28 14:40 ` [PATCH] oc-csl: Add support for the text and year citation styles Bastien
2021-09-28 14:58 ` Nicolas Goaziou
2021-09-28 15:03 ` Max Nikulin
2021-09-28 15:16 ` András Simonyi
2021-09-28 16:39 ` András Simonyi
2021-09-28 16:54 ` Max Nikulin
2021-09-28 16:56 ` Bastien Guerry
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAOWRwxDcxZ=OQzwa5GyKzPtqwzJJaH70co27pgNv3nRYgJe83g@mail.gmail.com' \
--to=andras.simonyi@gmail.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).