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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
量子位
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
博客园 - 聂微东
博客园_首页
D
Docker
博客园 - 叶小钗
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
腾讯CDC
罗磊的独立博客
雷峰网
雷峰网
博客园 - Franky

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 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 Use ConTeXt Mark XL instead of LMTX - elpa/gnu.git
elpa/gnu.git - GNU ELPA
Arash Esbati · 2026-08-22 · via elpa/gnu.git, branch externals/auctex

* style/ltx-talk.el (LaTeX-ltx-talk-frame-key-val-options): New variable. Use it in the style hook. Add missing macros incl. fontification.

@@ -1,4 +1,4 @@

-;;; ltx-talk.el --- AUCTeX style for `ltx-talk.cls' (v0.3.12) -*- lexical-binding: t; -*-

+;;; ltx-talk.el --- AUCTeX style for `ltx-talk.cls' (v0.5.3) -*- lexical-binding: t; -*-

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

@@ -24,7 +24,7 @@

;;; Commentary:

-;; This file adds support for `ltx-talk.sty' (v0.3.12) from 2026-01-21.

+;; This file adds support for `ltx-talk.sty' (v0.5.3) from 2026-08-05.

;; `ltx-talk.sty' is part of TeXLive.

;;; Code:

@@ -50,6 +50,12 @@ You can turn off the prompt for the overlay argument by setting

Optional MACRO can be a string, for example, \"bibitem\"."

(TeX-insert-macro (or macro "item")))

+(defvar LaTeX-ltx-talk-frame-key-val-options

+ '(("action-spec")

+ ("name")

+ ("vertical-alignment" ("bottom" "center" "stretch" "top")))

+ "List of key=val options for the frame environment.")

+

(TeX-add-style-hook

"ltx-talk"

(lambda ()

@@ -59,15 +65,15 @@ Optional MACRO can be a string, for example, \"bibitem\"."

;; New symbols

(TeX-add-symbols

- ;; 6.2 Components of a frame: The optional [<options>] arg seems to

+ ;; 9.2 Components of a frame: The optional [<options>] arg seems to

;; be unused, to skip it for now:

'("frametitle" [TeX-arg-ltx-talk-overlay-spec] "Title")

'("framesubtitle" [TeX-arg-ltx-talk-overlay-spec] "Subtitle")

- ;; 7.1 The \pause command

+ ;; 10.1 The \pause command

'("pause" [TeX-arg-ltx-talk-overlay-spec])

- ;; 7.3 Commands with overlay specifications

+ ;; 10.3 Commands with overlay specifications

'("onslide" [TeX-arg-ltx-talk-overlay-spec])

'("only" [TeX-arg-ltx-talk-overlay-spec] "Text")

'("uncover" [TeX-arg-ltx-talk-overlay-spec] "Text")

@@ -124,10 +130,10 @@ Optional MACRO can be a string, for example, \"bibitem\"."

[TeX-arg-key-val (LaTeX-graphicx-key-val-options) nil nil ?\s]

LaTeX-arg-includegraphics)

- ;; 7.6.2 Action specifications

+ ;; 10.6.2 Action specifications

'("action" [TeX-arg-ltx-talk-overlay-spec "Action spec"] "Text")

- ;; 8.1 Adding a title frame

+ ;; 11.1 Adding a title frame

'("maketitle" [TeX-arg-completing-read-multiple ("element-order"

"frame-style"

"horizontal-alignment"

@@ -163,13 +169,27 @@ Optional MACRO can be a string, for example, \"bibitem\"."

TeX-arg-space)

;; 9.2 Highlighting

- '("alert" [TeX-arg-ltx-talk-overlay-spec] "Text"))

+ '("alert" [TeX-arg-ltx-talk-overlay-spec] "Text")

+

+ ;; 12.6 Footnotes

+ '("footnote"

+ [TeX-arg-ltx-talk-overlay-spec]

+ (TeX-arg-conditional TeX-arg-footnote-number-p ([ "Number" ]) nil)

+ t)

+

+ ;; 12.7 Repeating a frame

+ '("reuseframe"

+ [TeX-arg-ltx-talk-overlay-spec]

+ [TeX-arg-key-val

+ (lambda ()

+ (remove '("name") LaTeX-ltx-talk-frame-key-val-options))]

+ "Name") )

(LaTeX-add-environments

- ;; 6.1 The frame environment: The optional [<options>] arg seems to

- ;; be unused, to skip it for now:

+ ;; 9.1 The frame environment:

'("frame" LaTeX-env-args

[TeX-arg-ltx-talk-overlay-spec]

+ [TeX-arg-key-val LaTeX-ltx-talk-frame-key-val-options]

(TeX-arg-conditional (or (LaTeX-provided-class-options-member

"ltx-talk" "frame-title-arg")

(LaTeX-provided-class-options-member

@@ -178,6 +198,7 @@ Optional MACRO can be a string, for example, \"bibitem\"."

()))

'("frame*" LaTeX-env-args

[TeX-arg-ltx-talk-overlay-spec]

+ [TeX-arg-key-val LaTeX-ltx-talk-frame-key-val-options]

(TeX-arg-conditional (or (LaTeX-provided-class-options-member

"ltx-talk" "frame-title-arg")

(LaTeX-provided-class-options-member

@@ -185,17 +206,17 @@ Optional MACRO can be a string, for example, \"bibitem\"."

("Title")

()))

- ;; 7.5 Dynamically changing text or images

+ ;; 10.5 Dynamically changing text or images

'("overlayarea" LaTeX-env-args

(TeX-arg-length "Area width") (TeX-arg-length "Area height"))

'("overprint" LaTeX-env-args

[TeX-arg-length "Area width"])

- ;; 7.6.2 Action specifications

+ ;; 10.6.2 Action specifications

'("actionenv" LaTeX-env-args

[TeX-arg-ltx-talk-overlay-spec "Action spec"])

- ;; 9.1 Itemizations, enumerations and descriptions

+ ;; 12.1 Itemizations, enumerations and descriptions

'("description" LaTeX-env-item-args

[TeX-arg-key-val (("action-spec") ("<>"))])

'("enumerate" LaTeX-env-item-args

@@ -203,11 +224,11 @@ Optional MACRO can be a string, for example, \"bibitem\"."

'("itemize" LaTeX-env-item-args

[TeX-arg-key-val (("action-spec") ("<>"))])

- ;; 9.2 Highlighting

+ ;; 12.2 Highlighting

'("alertenv" LaTeX-env-args

[TeX-arg-ltx-talk-overlay-spec])

- ;; 9.5 Splitting a frame into multiple columns

+ ;; 12.5 Splitting a frame into multiple columns

`("columns" LaTeX-env-args

[TeX-arg-ltx-talk-overlay-spec "Action spec"]

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

@@ -221,7 +242,7 @@ Optional MACRO can be a string, for example, \"bibitem\"."

["Placement"]

TeX-arg-length) )

- ;; 7.4 Environments with overlay specifications

+ ;; 10.4 Environments with overlay specifications

(let ((envs '("onlyenv" "invisibleenv" "uncoverenv" "visibleenv"))

result)

(dolist (env envs)

@@ -293,10 +314,12 @@ Optional MACRO can be a string, for example, \"bibitem\"."

(font-latex-add-keywords '(("includegraphics" "*<[[{")

("label" "<{")

("hyperlink" "<{{<")

- ("hypertarget" "<{{"))

+ ("hypertarget" "<{{")

+ ("footnote" "<[{"))

'reference)

- (font-latex-add-keywords '(("pause" "[")

- ("maketitle" "["))

+ (font-latex-add-keywords '(("pause" "[")

+ ("maketitle" "[")

+ ("reuseframe" "<[{"))

'function)))

TeX-dialect)