Skip to content

Commit

Permalink
Merge branch 'hotfix/v2.06i'
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpiggi committed Jul 27, 2020
2 parents 4cdd1b5 + ded3928 commit cdd5549
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 8 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Copyright (C) Falk Hanisch <[email protected]>, 2012-2020

tudscr 2020/06/25 v2.06h
tudscr 2020/07/27 v2.06i

----------------------------------------------------------------------------

Expand Down Expand Up @@ -53,6 +53,9 @@ Das Bundle beinhaltet:
Versionen
---------

**v2.06i** (2020/07/27)
+ Bugfix für duplizierte Outline-Einträg in Umgebung `abstract`

**v2.06h** (2020/06/25)
+ Bugfix für Paket **polyglossia** #52

Expand Down Expand Up @@ -257,6 +260,9 @@ The bundle offers:
Versions
--------

**v2.06i** (2020/07/27)
+ bug fix for duplicated outline entries in environment `abstract`

**v2.06h** (2020/06/25)
+ bug fix for package **polyglossia** #52

Expand Down
2 changes: 1 addition & 1 deletion source/doc/tudscr.tex
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
\endgroup%
}
\faculty{\cdurl}
\date{2020-06-25}
\date{2020-07-27}
\author{%
Falk Hanisch%
\expandafter\emailaddress\expandafter{\tudscrmail}%
Expand Down
8 changes: 6 additions & 2 deletions source/tudscr-comp.dtx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% \CheckSum{1455}
% \CheckSum{1456}
% \iffalse meta-comment
%
% TUD-Script -- Corporate Design of Technische Universität Dresden
Expand Down Expand Up @@ -52,7 +52,7 @@
% \fi
%
\ifx\ProvidesFile\undefined\def\ProvidesFile#1[#2]{}\fi
\ProvidesFile{tudscr-comp.dtx}[2020/06/25 v2.06h TUD-Script\space%
\ProvidesFile{tudscr-comp.dtx}[2020/07/27 v2.06i TUD-Script\space%
%
% \iffalse
%</dtx>
Expand Down Expand Up @@ -387,6 +387,8 @@
% \changes{v2.06g}{2020/06/18}{neu}^^A
% \begin{macro}{\tud@[email protected]}
% \changes{v2.06h}{2020/06/25}{neu}^^A
% \begin{macro}{\tud@[email protected]}
% \changes{v2.06i}{2020/07/27}{neu}^^A
% \begin{macro}{\tud@v@last}
% \changes{v2.02}{2014/08/22}{neu}^^A
% \changes{v2.03}{2015/01/13}{angepasst}^^A
Expand Down Expand Up @@ -431,9 +433,11 @@
\csdef{tud@[email protected]}{4}
\csdef{tud@[email protected]}{4}
\csdef{tud@[email protected]}{4}
\csdef{tud@[email protected]}{4}
\csdef{tud@v@last}{4}
% \end{macrocode}
% \end{macro}^^A \tud@v@last
% \end{macro}^^A \tud@[email protected]
% \end{macro}^^A \tud@[email protected]
% \end{macro}^^A \tud@[email protected]
% \end{macro}^^A \tud@[email protected]
Expand Down
12 changes: 9 additions & 3 deletions source/tudscr-frontmatter.dtx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% \CheckSum{815}
% \CheckSum{817}
% \iffalse meta-comment
%
% TUD-Script -- Corporate Design of Technische Universität Dresden
Expand Down Expand Up @@ -52,7 +52,7 @@
% \fi
%
\ifx\ProvidesFile\undefined\def\ProvidesFile#1[#2]{}\fi
\ProvidesFile{tudscr-frontmatter.dtx}[2019/06/28 v2.06 TUD-Script\space%
\ProvidesFile{tudscr-frontmatter.dtx}[2020/07/27 v2.06i TUD-Script\space%
(frontmatter)%
]
%
Expand Down Expand Up @@ -129,7 +129,13 @@
\ifboolexpr{%
bool {@titlepage} and bool {@tud@#1@fil} and bool {@tud@#1@multi}%
}{%
\sbox\z@{\vbox{#2}}%
% \end{macrocode}
% Das Erstellen von Outline-Einträgen wird innerhalb der Box deaktiviert.
% \begin{macrocode}
\sbox\z@{%
\renewcommand*\addtocentrydefault[3]{}%
\vbox{#2}%
}%
\ifdim\textheight<\dimexpr\ht\z@+\dp\z@\relax%
\ClassWarning{\TUD@Class@Name}{%
The given content within the `#1'\MessageBreak%
Expand Down
2 changes: 1 addition & 1 deletion source/tudscr-version.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
%<*!(package|class)>
\fi
%</!(package|class)>
\TUD@Version@Check{2020/06/25 v2.06h TUD-Script}
\TUD@Version@Check{2020/07/27 v2.06i TUD-Script}
\endgroup
% \end{macrocode}
% \end{macro}^^A \TUDScriptVersionNumber
Expand Down
28 changes: 28 additions & 0 deletions test/test.tex
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
\documentclass[ngerman,USenglish]{tudscrreprt}
\usepackage{babel}
\usepackage{bookmark}
\usepackage{hyperref}

\title{Titel der Arbeit}
\author{Vorname Nachname}

\begin{document}
\maketitle

\TUDoption{abstract}{multiple,section}
\begin{abstract}
English abstract.

\nextabstract[ngerman]
Deutsche Zusammenfassung
\end{abstract}

\tableofcontents
\chapter{Kapitel 1}
Inhalt.

\chapter{Kapitel 2}
\section{Abschnitt 2.1}

\end{document}

\documentclass[
ngerman,
%cdoldfont,
Expand Down

0 comments on commit cdd5549

Please sign in to comment.