惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
小众软件
小众软件
GbyAI
GbyAI
B
Blog RSS Feed
月光博客
月光博客
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
博客园_首页
G
Google Developers Blog

elpa/gnu.git, branch externals/auctex

Release GNU AUCTeX 14.2.0 - elpa/gnu.git * latex.el (LaTeX-what-macro): Fix chars to skip backwards. - elpa/gnu.git * tex-ispell.el: Consolidate regexp for tabular environments. - elpa/gnu.git ; * latex.el (LaTeX-what-macro): Fix last change. - elpa/gnu.git * latex.el (LaTeX-what-macro): Improve macro recognition. - elpa/gnu.git Preserve `crm--choose-completion-string' - elpa/gnu.git - GNU ELPA Accept '-' as macro modifier - elpa/gnu.git Add new styles - elpa/gnu.git ; * tex-info.el (outline-heading-alist): Silence the compiler. - elpa/gnu.git Update style/simpleicons.el to package v16.29.0 - elpa/gnu.git Update NEWS.org for new preview feature - elpa/gnu.git Robustify check for escaped math switches/togglers - elpa/gnu.git Fix custom prompt with a default-value - elpa/gnu.git Fix prompt with a default-value - elpa/gnu.git Make `TeX-listify' an obsolete alias - elpa/gnu.git Fix 'syntax-propertize because of narrowing!' error - elpa/gnu.git Update style/ltx-talk.el to class v0.6.0 - elpa/gnu.git elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA Return context for RefTeX also for macros - elpa/gnu.git ; Fix last change - elpa/gnu.git Add in-buffer completion for citation keys - elpa/gnu.git ; Adjust Copyright years - elpa/gnu.git Improve query of the optional float placement - elpa/gnu.git Sort predefined environment hooks - elpa/gnu.git Sort predefined hooks - elpa/gnu.git Allow additional properties for in-buffer completion - elpa/gnu.git
Update style/keytheorems.el to package v0.4.0 - elpa/gnu.git
Arash Esbati · 2026-09-19 · via elpa/gnu.git, branch externals/auctex
authorArash Esbati <arash@gnu.org>2026-09-19 15:37:54 +0200
committerArash Esbati <arash@gnu.org>2026-09-19 15:37:54 +0200
commitb3a7b226b3b9107319326e1a9792fdefdc8d20fa (patch)
treeae865fcdd1796974ea114548d8fdcdc858ef75ca
parentcc5a4776967eeaac3bba75b3be4365695d7dc97d (diff)

* style/keytheorems.el (LaTeX-keytheorems-package-options-list): Update options. ("keytheorems"): Adjust options for \keytheoremset macro.

-rw-r--r--style/keytheorems.el23

1 files changed, 16 insertions, 7 deletions

diff --git a/style/keytheorems.el b/style/keytheorems.el
index 1027169e890..9e597f59eea 100644
--- a/style/keytheorems.el
+++ b/style/keytheorems.el

@@ -1,6 +1,6 @@

-;;; keytheorems.el --- AUCTeX style for `keytheorems.sty' (v0.3.0) -*- lexical-binding: t; -*-

+;;; keytheorems.el --- AUCTeX style for `keytheorems.sty' (v0.4.0) -*- lexical-binding: t; -*-

-;; Copyright (C) 2025 Free Software Foundation, Inc.

+;; Copyright (C) 2025--2026 Free Software Foundation, Inc.

;; Author: Arash Esbati <arash@gnu.org>

;; Maintainer: auctex-devel@gnu.org

@@ -24,8 +24,8 @@

;;; Commentary:

-;; This file adds support for `keytheorems.sty' (v0.3.0) from

-;; 2025-06-20. `keytheorems.sty' is part of TeXLive.

+;; This file adds support for `keytheorems.sty' (v0.4.0) from

+;; 2026-09-17. `keytheorems.sty' is part of TeXLive.

;;; Code:

@@ -41,6 +41,8 @@

("auto-translate" ("true" "false"))

("predefined")

("qed-symbol")

+ ("auto-qed")

+ ("thmmarks")

("restate-counters")

("store-all")

("store-sets-label"))

@@ -261,14 +263,21 @@ Select the content of the optional argument with a key:

;; Add keytheorems to the parser.

(TeX-auto-add-regexp LaTeX-keytheorems-newkeytheorem-regexp)

+ ;; Options management

(TeX-run-style-hooks "amsthm")

+ (when (or (LaTeX-provided-package-options-member "keytheorems" "auto-qed")

+ (LaTeX-provided-package-options-member "keytheorems" "thmmarks"))

+ (TeX-run-style-hooks "amsmath"))

(TeX-add-symbols

;; 2 Global options

'("keytheoremset"

- (TeX-arg-key-val (lambda ()

- (append '(("continues-code"))

- LaTeX-keytheorems-package-options-list))))

+ (TeX-arg-key-val

+ (lambda ()

+ (append '(("continues-code"))

+ (let ((opts (copy-sequence LaTeX-keytheorems-package-options-list)))

+ (dolist (elt '(("auto-qed") ("thmmarks")) opts)

+ (setq opts (delete elt opts))))))))

;; 3 Defining theorems

'("newkeytheorem"