Re: AUCTeX newenvironment input support

2022-11-22 Thread Ikumi Keita
> Arash Esbati writes: >> I'd propose to apply the attached fix, which also includes removal of >> duplication of code. (The deleted portion is inside "else" clause of >> `(if (string-equal LaTeX-version "2")', but it wouldn't fail for LaTeX >> 2.09 document because

master updated (d937d403 -> eca0fadb)

2022-11-22 Thread Ikumi Keita
ikumi pushed a change to branch master. from d937d403 Simplify implementation of style/changelog.el new 3d5ac9cf Cleanup newcommand/newenvironment support new eca0fadb ; Trivial cleanups Summary of changes: context.el | 20 ++-- latex.el | 38

master 3d5ac9cf 1/2: Cleanup newcommand/newenvironment support

2022-11-22 Thread Ikumi Keita
branch: master commit 3d5ac9cf7af5bedbae2e430024f001168d4e4a99 Author: Ikumi Keita Commit: Ikumi Keita Cleanup newcommand/newenvironment support * latex.el (LaTeX-common-initialization): Use `TeX-arg-define-macro-arguments' for optional argument for (re)newenvironment(*).

master eca0fadb 2/2: ; Trivial cleanups

2022-11-22 Thread Ikumi Keita
branch: master commit eca0fadbc3462aebc48f8a672243a2776e148d8a Author: Ikumi Keita Commit: Ikumi Keita ; Trivial cleanups * tex.el (TeX-search-unescaped): Quote function names by #'. (TeX-parse-all-errors): Remove comment which no longer applies since tex-buf.el was merged

master d937d403: Simplify implementation of style/changelog.el

2022-11-22 Thread Arash Esbati
branch: master commit d937d4035cc8754cc95a379cfba59cf88fd951f6 Author: Arash Esbati Commit: Arash Esbati Simplify implementation of style/changelog.el * style/changelog.el (LaTeX-changelog-key-val-options): New function returning key=vals. The functionality used to be part of

Re: AUCTeX newenvironment input support

2022-11-22 Thread Arash Esbati
Hi Keita, Ikumi Keita writes: > Here is (re)newenvironment input support in latex.el: > , > |'("newenvironment" TeX-arg-define-environment > | [ "Number of arguments"] t t) > |'("renewenvironment" TeX-arg-environment > | [ "Number of arguments"] t t) > ` > Note the two

master 00f9192b: Check the value of `LaTeX-current-environment' first

2022-11-22 Thread Arash Esbati
branch: master commit 00f9192bbbfbc1ecfc784f5a1b8c5e9880d7d44a Author: Arash Esbati Commit: Arash Esbati Check the value of `LaTeX-current-environment' first * style/breqn.el (LaTeX-breqn-key-val-options): Check if the variable `LaTeX-current-environment' contains a name before

master e4ceb88b: Bind a value to `LaTeX-current-environment' locally

2022-11-22 Thread Arash Esbati
branch: master commit e4ceb88bb7cb4f406874de196aa71118449fe373 Author: Arash Esbati Commit: Arash Esbati Bind a value to `LaTeX-current-environment' locally * latex.el (LaTeX-current-environment): Add docstring. (LaTeX-env-item-args, LaTeX-env-label-args, LaTeX-env-args):

Re: AUCTeX to compile each \include file to a separate file

2022-11-22 Thread Thibaut Verron
Le mar. 22 nov. 2022 à 19:07, kaykal a écrit : > Hi everyone, > > Is there anyway to generate different PDF files for each included file in > master file with AUCTeX. > > More specifically, I have one master file called “master”, in which, I > have included two chapters: “chapter01” and

Re: AUCTeX to compile each \include file to a separate file

2022-11-22 Thread Arash Esbati
Hi Kourosh, kaykal writes: > Is there anyway to generate different PDF files for each included file > in master file with AUCTeX. > > More specifically, I have one master file called “master”, in which, I > have included two chapters: “chapter01” and “chapter02”. I want > AUCTeX (after

AUCTeX to compile each \include file to a separate file

2022-11-22 Thread kaykal
Hi everyone, Is there anyway to generate different PDF files for each included file in master file with AUCTeX. More specifically, I have one master file called “master”, in which, I have included two chapters: “chapter01” and “chapter02”. I want AUCTeX (after appropriate number of runs) to

AUCTeX newenvironment input support

2022-11-22 Thread Ikumi Keita
Hi all, Here is (re)newenvironment input support in latex.el: , |'("newenvironment" TeX-arg-define-environment | [ "Number of arguments"] t t) |'("renewenvironment" TeX-arg-environment | [ "Number of arguments"] t t) ` Note the two `t's in each entry. This leaves two