aboutsummaryrefslogtreecommitdiff
path: root/ekdosis.el
diff options
context:
space:
mode:
authorRobert Alessi <alessi@robertalessi.net>2023-06-22 18:54:08 +0200
committerRobert Alessi <alessi@robertalessi.net>2023-06-22 18:54:08 +0200
commit90cf4bb17e7fa6363050630b74668722dd857fbe (patch)
treec618eb8cbd8befed08643aefc0f59f0435210ffe /ekdosis.el
parentdfccfa00e569921faa22ce88a996818e5debac79 (diff)
downloadekdosis-90cf4bb17e7fa6363050630b74668722dd857fbe.tar.gz
new functions for combining footnotes into a single paragraph
Diffstat (limited to 'ekdosis.el')
-rw-r--r--ekdosis.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/ekdosis.el b/ekdosis.el
index 37ac9f4..ccc1853 100644
--- a/ekdosis.el
+++ b/ekdosis.el
@@ -242,6 +242,18 @@
242 ("lineation" ("page" "document"))) 242 ("lineation" ("page" "document")))
243 "Local options for alignment env.") 243 "Local options for alignment env.")
244 244
245(defvar LaTeX-ekdosis-footnotes-key-val-options
246 '(("layout" ("default" "paragraph"))
247 ("type")
248 ("textfnmark")
249 ("appfnmark"))
250 "Local options for footnotes combined in a single paragraph.")
251
252(defvar LaTeX-ekdosis-footnote-options
253 '(("type")
254 ("mark"))
255 "Local options for footnote macro.")
256
245(defvar LaTeX-ekdosis-ekdverse-key-val-options 257(defvar LaTeX-ekdosis-ekdverse-key-val-options
246 '(("width") 258 '(("width")
247 ("type")) 259 ("type"))
@@ -400,8 +412,12 @@
400 '("SetDefaultApparatus" "apparatus name" 0) 412 '("SetDefaultApparatus" "apparatus name" 0)
401 '("DeclareApparatus" "apparatus name" 413 '("DeclareApparatus" "apparatus name"
402 [ TeX-arg-key-val LaTeX-ekdosis-declareapparatus-options ] 0) 414 [ TeX-arg-key-val LaTeX-ekdosis-declareapparatus-options ] 0)
415 '("footnote" [ TeX-arg-key-val LaTeX-ekdosis-footnote-options ]
416 t)
403 '("indentpattern" "pattern" 0) 417 '("indentpattern" "pattern" 0)
404 '("vin" 0) 418 '("vin" 0)
419 '("SetFootnotes"
420 (TeX-arg-key-val LaTeX-ekdosis-footnotes-key-val-options))
405 '("SetLineation" (TeX-arg-key-val LaTeX-ekdosis-setlineation-options)) 421 '("SetLineation" (TeX-arg-key-val LaTeX-ekdosis-setlineation-options))
406 '("innerlinenumbers" 0) 422 '("innerlinenumbers" 0)
407 '("outerlinenumbers" 0) 423 '("outerlinenumbers" 0)