GNU TeXmacs - Bugs: bug #60544, TeXmacs ignores numbering...
You are not allowed to post comments on this tracker with your current authentication level.
bug #60544: TeXmacs ignores numbering configurations after conversion to LaTeX
Submitter: | Aeh9quu9 <ohnie0ai> | ||
Submitted: | Fri 07 May 2021 02:31:30 PM UTC | ||
Category: | Conversion | Priority: | 3 - Low |
Item Group: | Error | Status: | Postponed |
Privacy: | Public | Assigned to: | vdhoeven |
Originator Name: | Open/Closed: | Open | |
Release: | None | Release: | 1.99.20 |
Fixed Release: | None | Fixed Release: | |
Keywords: |
Sat 29 May 2021 10:12:22 PM UTC, comment #2: |
Aeh9quu9 <ohnie0ai> |
Sat 29 May 2021 01:01:52 PM UTC, comment #1: This kind of options do not necessarily work the same way in TeXmacs and LaTeX (I guess that they may conflict with certain style files from publishers).
|
Joris van der Hoeven <vdhoeven>![]() ![]() |
Fri 07 May 2021 02:31:30 PM UTC, original submission:
I tested number-long-article, but maybe others are the same.
|
Aeh9quu9 <ohnie0ai> |
No files currently attached
Depends on the following items: None found
Items that depend on this one: None found
There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.
Numbering seems easy to achieve: TeXmacs is already producing commands like
\newtheorem{corollary}{Corollary}
\newtheorem{proposition}{Proposition}
It suffices to modify it to
\newtheorem{corollary}{Corollary}[section] % appears for the first time
\newtheorem{proposition}[corollary]{Proposition} % use the same counter with corollaries
The solution I perceive look like this: for each group, TeXmacs produces a "virtual theorem" like
\newtheorem{texmacs_grpA}{}[section]
And then, for each theorem environment in grpA, use
\newtheorem{xxx}[texmacs_grpA]{XXX}
This does not seem to conflict with other style files?