texlive[71999] Master/texmf-dist: easybook (9aug24)
commits+karl at tug.org
commits+karl at tug.org
Fri Aug 9 23:15:16 CEST 2024
Revision: 71999
https://tug.org/svn/texlive?view=revision&revision=71999
Author: karl
Date: 2024-08-09 23:15:16 +0200 (Fri, 09 Aug 2024)
Log Message:
-----------
easybook (9aug24)
Modified Paths:
--------------
trunk/Master/texmf-dist/doc/latex/easybook/README.md
trunk/Master/texmf-dist/doc/latex/easybook/easybook.pdf
trunk/Master/texmf-dist/doc/latex/easybook/easybook.tex
trunk/Master/texmf-dist/source/latex/easybook/easybook.dtx
trunk/Master/texmf-dist/tex/latex/easybook/easybase.sty
trunk/Master/texmf-dist/tex/latex/easybook/easybook.cls
trunk/Master/texmf-dist/tex/latex/easybook/eb-tcolorbox.cfg
Modified: trunk/Master/texmf-dist/doc/latex/easybook/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/easybook/README.md 2024-08-09 21:15:02 UTC (rev 71998)
+++ trunk/Master/texmf-dist/doc/latex/easybook/README.md 2024-08-09 21:15:16 UTC (rev 71999)
@@ -1,5 +1,5 @@
# The `easybook` document class
-Easily typesetting Chinese theses or books (v2024dh)
+Easily typesetting Chinese theses or books (v2024di)
## Abstract
`easybook` is a pure academic template created based on the `ctexbook` book document class. It also has the functions of `book` and `article` document class. Combined with the general framework design of the theses of many universities in China, providing multiple commands and interfaces allows users to easily customize the theses templates. Its basic macro package `easybase` can also be used with `ctex` and standard document classes.
Modified: trunk/Master/texmf-dist/doc/latex/easybook/easybook.pdf
===================================================================
(Binary files differ)
Modified: trunk/Master/texmf-dist/doc/latex/easybook/easybook.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/easybook/easybook.tex 2024-08-09 21:15:02 UTC (rev 71998)
+++ trunk/Master/texmf-dist/doc/latex/easybook/easybook.tex 2024-08-09 21:15:16 UTC (rev 71999)
@@ -23,8 +23,8 @@
name = easybook,
color-scheme = blue,
title = EASYBOOK使用手册,
- version = v2024dh,
- date = 2024/08/06,
+ version = v2024di,
+ date = 2024/08/08,
authors = 瞿毅,
info = 简便地排版中文学位论文或书籍,
email = toquyi at 163.com,
Modified: trunk/Master/texmf-dist/source/latex/easybook/easybook.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/easybook/easybook.dtx 2024-08-09 21:15:02 UTC (rev 71998)
+++ trunk/Master/texmf-dist/source/latex/easybook/easybook.dtx 2024-08-09 21:15:16 UTC (rev 71999)
@@ -14,7 +14,7 @@
% This work has the LPPL maintenance status `maintained'.
%<class|package>\NeedsTeXFormat{LaTeX2e}[2021/11/15]
%<*class>
-\ProvidesExplClass{easybook}{2024/08/06}{2024dh}
+\ProvidesExplClass{easybook}{2024/08/08}{2024di}
{Easily typesetting Chinese theses or books}
\bool_new:N \l__eb_compile_draft_bool
@@ -301,7 +301,7 @@
%</class>
%<*package>
\RequirePackage{etoolbox}
-\ProvidesExplPackage{easybase}{2024/08/06}{2024dh}
+\ProvidesExplPackage{easybase}{2024/08/08}{2024di}
{Easily typesetting Chinese theses or books}
\cs_generate_variant:Nn \dim_set:Nn { NV }
@@ -1123,12 +1123,12 @@
\ctex_at_end_package:nn { footmisc }
{
\eb_package_date_check:nn { footmisc } { 2022/02/10 }
- \ifbool{FN at para}{}
+ \ifboolexpr{not (bool {FN at para} or bool {FN at sidefn})}
{
\boolfalse{FN at setspace}
\cs_set_eq:NN \@makefntext \eb@@makefntext
\cs_set_eq:NN \@footnotetext \eb@@footnotetext
- }
+ }{}
\ifboolexpr
{
bool {FN at hangfoot} or
@@ -2136,8 +2136,7 @@
{
\use:x
{
- \exp_not:n
- { \captionsetup[#1] }
+ \exp_not:N \captionsetup[#1]
{ \eb_unknown_kv_handle: }
}
},
@@ -2791,6 +2790,12 @@
{
content =
{
+ \notbool{@titlepage}
+ {
+ \renewcommand{\theupfootnote}{\@fnsymbol\c at footnote}
+ \renewcommand{\thefootnote}{\@fnsymbol\c at footnote}
+ }
+ {}
\LARGE\@title\par\vskip 3em
\large
\begin{tabular}[t]{c}
@@ -2797,6 +2802,8 @@
\@author
\end{tabular}\par\vskip 1.5em
\@date
+ \notbool{@titlepage}{\par\vskip 1.5em}{}
+ \@thanks
},
beforecode =
{
@@ -2813,7 +2820,6 @@
},
aftercode =
{
- \@thanks
\ifbool{@titlepage}
{
\vfil\null
@@ -2838,7 +2844,7 @@
}
%</package>
%<*tcolorbox>
-\ProvidesExplFile{eb-tcolorbox.cfg}{2024/08/06}{2024dh}
+\ProvidesExplFile{eb-tcolorbox.cfg}{2024/08/08}{2024di}
{Customization of tcolorbox for easybook}
\cs_set_protected:Npn \addtotcbstyle #1#2
Modified: trunk/Master/texmf-dist/tex/latex/easybook/easybase.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/easybook/easybase.sty 2024-08-09 21:15:02 UTC (rev 71998)
+++ trunk/Master/texmf-dist/tex/latex/easybook/easybase.sty 2024-08-09 21:15:16 UTC (rev 71999)
@@ -20,7 +20,7 @@
%% This work has the LPPL maintenance status `maintained'.
\NeedsTeXFormat{LaTeX2e}[2021/11/15]
\RequirePackage{etoolbox}
-\ProvidesExplPackage{easybase}{2024/08/06}{2024dh}
+\ProvidesExplPackage{easybase}{2024/08/08}{2024di}
{Easily typesetting Chinese theses or books}
\cs_generate_variant:Nn \dim_set:Nn { NV }
@@ -842,12 +842,12 @@
\ctex_at_end_package:nn { footmisc }
{
\eb_package_date_check:nn { footmisc } { 2022/02/10 }
- \ifbool{FN at para}{}
+ \ifboolexpr{not (bool {FN at para} or bool {FN at sidefn})}
{
\boolfalse{FN at setspace}
\cs_set_eq:NN \@makefntext \eb@@makefntext
\cs_set_eq:NN \@footnotetext \eb@@footnotetext
- }
+ }{}
\ifboolexpr
{
bool {FN at hangfoot} or
@@ -1855,8 +1855,7 @@
{
\use:x
{
- \exp_not:n
- { \captionsetup[#1] }
+ \exp_not:N \captionsetup[#1]
{ \eb_unknown_kv_handle: }
}
},
@@ -2510,6 +2509,12 @@
{
content =
{
+ \notbool{@titlepage}
+ {
+ \renewcommand{\theupfootnote}{\@fnsymbol\c at footnote}
+ \renewcommand{\thefootnote}{\@fnsymbol\c at footnote}
+ }
+ {}
\LARGE\@title\par\vskip 3em
\large
\begin{tabular}[t]{c}
@@ -2516,6 +2521,8 @@
\@author
\end{tabular}\par\vskip 1.5em
\@date
+ \notbool{@titlepage}{\par\vskip 1.5em}{}
+ \@thanks
},
beforecode =
{
@@ -2532,7 +2539,6 @@
},
aftercode =
{
- \@thanks
\ifbool{@titlepage}
{
\vfil\null
Modified: trunk/Master/texmf-dist/tex/latex/easybook/easybook.cls
===================================================================
--- trunk/Master/texmf-dist/tex/latex/easybook/easybook.cls 2024-08-09 21:15:02 UTC (rev 71998)
+++ trunk/Master/texmf-dist/tex/latex/easybook/easybook.cls 2024-08-09 21:15:16 UTC (rev 71999)
@@ -19,7 +19,7 @@
%%
%% This work has the LPPL maintenance status `maintained'.
\NeedsTeXFormat{LaTeX2e}[2021/11/15]
-\ProvidesExplClass{easybook}{2024/08/06}{2024dh}
+\ProvidesExplClass{easybook}{2024/08/08}{2024di}
{Easily typesetting Chinese theses or books}
\bool_new:N \l__eb_compile_draft_bool
Modified: trunk/Master/texmf-dist/tex/latex/easybook/eb-tcolorbox.cfg
===================================================================
--- trunk/Master/texmf-dist/tex/latex/easybook/eb-tcolorbox.cfg 2024-08-09 21:15:02 UTC (rev 71998)
+++ trunk/Master/texmf-dist/tex/latex/easybook/eb-tcolorbox.cfg 2024-08-09 21:15:16 UTC (rev 71999)
@@ -18,7 +18,7 @@
%% LaTeX version 2005/12/01 or later.
%%
%% This work has the LPPL maintenance status `maintained'.
-\ProvidesExplFile{eb-tcolorbox.cfg}{2024/08/06}{2024dh}
+\ProvidesExplFile{eb-tcolorbox.cfg}{2024/08/08}{2024di}
{Customization of tcolorbox for easybook}
\cs_set_protected:Npn \addtotcbstyle #1#2
More information about the tex-live-commits
mailing list.