-
-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix for #1638 * update rollback code * extend the test to also cover extended syntax * updates after review * new text suggestion * add a comment about commands defined elsewhere
- Loading branch information
1 parent
19d68da
commit c70b82b
Showing
7 changed files
with
482 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,15 +6,20 @@ to completeness or accuracy and it contains some references to files that are | |
not part of the distribution. | ||
================================================================================ | ||
|
||
2025-01-23 Frank Mittelbach <[email protected]> | ||
|
||
* ltoutput.dtx (subsection{Floats}): | ||
* ltsect.dtx (subsection{Table of Contents etc.}): | ||
Make \label, \index, and \glossary truely invisible | ||
when typesetting (gh/1638) | ||
|
||
2025-01-23 Joseph Wright <[email protected]> | ||
* ltcmd.dtx, usrguide.tex | ||
New "c"-type argument | ||
|
||
2025-01-21 Frank Mittelbach <[email protected]> | ||
|
||
* ltoutput.dtx (subsection{Floats}): | ||
Support extended syntax for \label, \index, and \glossary (gh/311) | ||
|
||
* ltsect.dtx (subsection{Table of Contents etc.}): | ||
Support extended syntax for \label, \index, and \glossary (gh/311) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
% Showed 2 spaces in running header, but one (correct) in TOC. | ||
% | ||
% Also test extended syntax (which has no separate test). | ||
% | ||
% As neither \label nor \index has an extended syntax so far you get strange | ||
% output in the heading, but the TOC and the running header is ok. | ||
|
||
\documentclass{book} | ||
|
||
\input{regression-test} | ||
|
||
\makeindex | ||
\pagestyle{headings} | ||
|
||
\showoutput | ||
|
||
\begin{document} | ||
|
||
\START | ||
|
||
\tableofcontents | ||
|
||
\chapter{X \index{blub} X \index*{abc} X \index[foo]{xyz} X X} | ||
\section{Y \label{bla} Y \label[foo]{bar} Y Y} | ||
x \newpage x \newpage x \newpage | ||
\OMIT | ||
\end{document} |
Oops, something went wrong.