[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master b9548da5 4/4: Simplify implementation of style/tcolorboxlib-theor
From: |
Arash Esbati |
Subject: |
master b9548da5 4/4: Simplify implementation of style/tcolorboxlib-theorems.el |
Date: |
Thu, 17 Nov 2022 06:04:24 -0500 (EST) |
branch: master
commit b9548da54ac8bfbec09ce1260e3d9bf432f1958c
Author: Arash Esbati <arash@gnu.org>
Commit: Arash Esbati <arash@gnu.org>
Simplify implementation of style/tcolorboxlib-theorems.el
* style/tcolorboxlib-theorems.el
(LaTeX-tcolorbox-lib-theorems-auto-cleanup):
("tcolorboxlib-theorems"): Use `LaTeX-env-args' instead of
`LaTeX-env-tcolorbox-lib-theorems'.
(LaTeX-env-tcolorbox-lib-theorems): Delete function.
(LaTeX-arg-tcolorbox-lib-theorems-newtcbtheorem): Insert only the
first argument, other arguments are queried in the hook.
---
style/tcolorboxlib-theorems.el | 50 ++++++++++++++----------------------------
1 file changed, 17 insertions(+), 33 deletions(-)
diff --git a/style/tcolorboxlib-theorems.el b/style/tcolorboxlib-theorems.el
index 20aa710d..7205ed4c 100644
--- a/style/tcolorboxlib-theorems.el
+++ b/style/tcolorboxlib-theorems.el
@@ -187,8 +187,14 @@
(let ((env (car elt)))
;; Add newly defined env's to AUCTeX:
(LaTeX-add-environments
- `(,env LaTeX-env-tcolorbox-lib-theorems)
- `(,(concat env "*") LaTeX-env-tcolorbox-lib-theorems))
+ `(,env LaTeX-env-args
+ [TeX-arg-key-val (LaTeX-tcolorbox-lib--theorems-keyval-options)]
+ "Title"
+ (TeX-arg-literal ,TeX-grop ,TeX-grcl)
+ (LaTeX-env-label-as-keyval nil nil ,env))
+ `(,(concat env "*") LaTeX-env-args
+ [TeX-arg-key-val (LaTeX-tcolorbox-lib--theorems-keyval-options)]
+ "Title"))
;; RefTeX: Make `reftex-label-regexps' buffer local and add env
;; to it:
(when (boundp 'reftex-label-regexps)
@@ -210,40 +216,15 @@
#'LaTeX-tcolorbox-lib-theorems-auto-cleanup t)
(add-hook 'TeX-update-style-hook #'TeX-auto-parse t)
-(defun LaTeX-env-tcolorbox-lib-theorems (environment)
- "Insert theorems ENVIRONMENT, ask for arguments and insert a label."
- (LaTeX-insert-environment
- environment
- (let ((opts (TeX-read-key-val t
(LaTeX-tcolorbox-lib--theorems-keyval-options)))
- (title (TeX-read-string
- (TeX-argument-prompt nil nil "Title"))))
- (concat
- (when (and opts (not (string= opts "")))
- (format "[%s]" opts))
- (concat TeX-grop title TeX-grcl)
- (unless (string= (substring-no-properties environment -1) "*")
- (concat TeX-grop TeX-grcl)))))
- (unless (string= (substring-no-properties environment -1) "*")
- (LaTeX-env-label-as-keyval nil nil nil environment)))
-
(defun LaTeX-arg-tcolorbox-lib-theorems-newtcbtheorem (optional)
- "Query and insert arguments of \\newtcbtheorem macro.
-If OPTIONAL is non-nil, insert the argument in brackets in not
+ "Query and insert the first argument of \\newtcbtheorem macro.
+If OPTIONAL is non-nil, insert the argument in brackets if not
empty."
(let ((env (TeX-read-string
- (TeX-argument-prompt optional nil "Name")))
- (disp-name (TeX-read-string
- (TeX-argument-prompt optional nil "Display Name")))
- (opts (TeX-read-key-val optional
-
(LaTeX-tcolorbox-lib--theorems-keyval-options))))
+ (TeX-argument-prompt optional nil "Name"))))
(LaTeX-add-tcolorbox-lib-theorems-newtcbtheorems env)
(LaTeX-tcolorbox-lib-theorems-auto-cleanup)
- (TeX-argument-insert env optional)
- (TeX-argument-insert disp-name optional)
- (TeX-argument-insert opts optional)
- ;; Our 'prefix' argument is always empty as we insert the 'label'
- ;; key with a full label value:
- (insert TeX-grop TeX-grcl)))
+ (TeX-argument-insert env optional)))
(defun LaTeX-tcolorbox-lib-theorems-reftex-label-context-function (env)
"Return a context string for RefTeX in ENV."
@@ -287,9 +268,12 @@ empty."
(TeX-add-symbols
;; 18.1 Macros of the Library
- '("newtcbtheorem"
+ `("newtcbtheorem"
[TeX-arg-key-val LaTeX-tcolorbox-init-options]
- LaTeX-arg-tcolorbox-lib-theorems-newtcbtheorem)
+ LaTeX-arg-tcolorbox-lib-theorems-newtcbtheorem
+ "Display Name"
+ (TeX-arg-key-val (LaTeX-tcolorbox-lib--theorems-keyval-options))
+ (TeX-arg-literal ,TeX-grop ,TeX-grcl))
`("renewtcbtheorem"
[TeX-arg-key-val LaTeX-tcolorbox-init-options]
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master b9548da5 4/4: Simplify implementation of style/tcolorboxlib-theorems.el,
Arash Esbati <=