summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/easybook
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2024-02-13 03:01:44 +0000
committerNorbert Preining <norbert@preining.info>2024-02-13 03:01:44 +0000
commitff59efb1f42e705d74a6d50a1f8dbd7988ccf380 (patch)
tree5da1e898aa276a82243afc394d373a15170d43d0 /macros/latex/contrib/easybook
parent275a181f003d2af5b7d9ca34f2b15f6511b3ea29 (diff)
CTAN sync 202402130301
Diffstat (limited to 'macros/latex/contrib/easybook')
-rw-r--r--macros/latex/contrib/easybook/easybook.dtx64
-rw-r--r--macros/latex/contrib/easybook/easybook.pdfbin593590 -> 594429 bytes
-rw-r--r--macros/latex/contrib/easybook/easybook.tex14
3 files changed, 38 insertions, 40 deletions
diff --git a/macros/latex/contrib/easybook/easybook.dtx b/macros/latex/contrib/easybook/easybook.dtx
index 8124d21bad..16f5b792c0 100644
--- a/macros/latex/contrib/easybook/easybook.dtx
+++ b/macros/latex/contrib/easybook/easybook.dtx
@@ -15,7 +15,7 @@
%<*class>
\NeedsTeXFormat{LaTeX2e}[2021/11/15]
\RequirePackage{l3keys2e}
-\ProvidesExplClass{easybook}{2024/02/11}{2024ab}
+\ProvidesExplClass{easybook}{2024/02/12}{2024ac}
{Easily typesetting Chinese theses or books}
\bool_set_false:N \l__eb_compile_draft_bool
@@ -297,7 +297,7 @@
%<*package>
\NeedsTeXFormat{LaTeX2e}[2021/11/15]
\RequirePackage{l3keys2e,etoolbox}
-\ProvidesExplPackage{easybase}{2024/02/11}{2024ab}
+\ProvidesExplPackage{easybase}{2024/02/12}{2024ac}
{Easily typesetting Chinese theses or books}
\cs_generate_variant:Nn \dim_set:Nn { NV }
@@ -334,21 +334,6 @@
}
\cs_new_protected:Npn \eb_at_end_preamble:n
{ \BeforeBeginEnvironment{document} }
-\cs_new_protected:Npn \eb_match_load_package:n #1
- {
- \regex_match:nnTF { \[ } {#1}
- {
- \seq_set_split:Nnn \l_tmpa_seq { [ } {#1}
- \seq_pop_left:NN \l_tmpa_seq \l_tmpa_tl
- \seq_pop_right:NN \l_tmpa_seq \l_tmpb_tl
- \IfFileExists{\l_tmpa_tl.sty}
- {
- \exp_last_unbraced:Nx \RequirePackage
- { [\l_tmpb_tl }{\l_tmpa_tl}
- }{}
- }
- { \IfFileExists{#1.sty}{\RequirePackage{#1}}{} }
- }
\cs_new_protected:Npn \eb_if_package_loaded:nnF #1#2#3
{
\IfPackageLoadedTF{#1}
@@ -376,13 +361,26 @@
{ \eb@usepackage@save{##1}[#3] }
}
}
-\NewDocumentCommand{\LoadPackage}{O{}m}
+\cs_new_protected:Npn \eb_match_load_package:n #1
{
- \seq_set_split:Nnn \l_tmpb_seq { + } {#2}
- \int_compare:nNnT { \seq_count:N \l_tmpb_seq } = { 1 }
- { \PassOptionsToPackage{#1}{#2} }
- \seq_map_function:NN
- \l_tmpb_seq \eb_match_load_package:n
+ \regex_match:nnTF { \[.*\] } {#1}
+ { \eb@case@load@package #1 }
+ { \eb@case@load@package{#1} }
+ }
+\NewDocumentCommand{\eb@case@load@package}{omO{}}
+ {
+ \IfNoValueTF{#1}
+ {\IfFileExists{#2.sty}{\RequirePackage{#2}[#3]}{}}
+ {\IfFileExists{#2.sty}{\RequirePackage[#1]{#2}[#3]}{}}
+ }
+\cs_new_protected:Npn \LoadPackage #1
+ {
+ \int_compare:nTF { \clist_count:n {#1} <= 1 }
+ { \RequirePackage }
+ {
+ \eb_seq_map_inline:nn {#1}
+ { \eb_match_load_package:n {##1} }
+ }
}
\bool_set_true:N \l__eb_class_mode_book_bool
@@ -485,14 +483,14 @@
\LoadPackage
{
- spbmark[text]+
- ulem[normalem]+
- enumitem[shortlabels,inline]+
- chemformula+siunitx+pifont+
- geometry+marginnote+
- pdfpages+multicol+
- fancyhdr+titletoc+caption+
- tabularray+
+ [text]{spbmark},
+ [normalem]{ulem},
+ [{shortlabels,inline}]{enumitem},
+ chemformula,siunitx,pifont,
+ geometry,marginnote,
+ pdfpages,multicol,
+ fancyhdr,titletoc,caption,
+ tabularray,
listings
}
\cs_new_protected:Npn \eb_package_date_check:nn #1#2
@@ -605,7 +603,7 @@
{\tl_set:cn { eb@mark@#1@label } {##1##2}}
\cs_new_protected:cpn { eb_mark_#1_name_parse:n } ##1
{
- \regex_match:nnTF { \[ } {##1}
+ \regex_match:nnTF { \[.*\] } {##1}
{ \use:c { eb@mark@#1@label@layout }##1 }
{ \use:c { eb@mark@#1@label@layout }{##1} }
}
@@ -2343,7 +2341,7 @@
}
%</package>
%<*tcolorbox>
-\ProvidesExplFile{eb-tcolorbox.cfg}{2024/02/11}{2024ab}
+\ProvidesExplFile{eb-tcolorbox.cfg}{2024/02/12}{2024ac}
{Customization of tcolorbox for easybook}
\cs_set_protected:Npn \addtotcbstyle #1#2
diff --git a/macros/latex/contrib/easybook/easybook.pdf b/macros/latex/contrib/easybook/easybook.pdf
index 06127742ca..1cb2868c87 100644
--- a/macros/latex/contrib/easybook/easybook.pdf
+++ b/macros/latex/contrib/easybook/easybook.pdf
Binary files differ
diff --git a/macros/latex/contrib/easybook/easybook.tex b/macros/latex/contrib/easybook/easybook.tex
index 0d4867eaa7..a1ddad3ca6 100644
--- a/macros/latex/contrib/easybook/easybook.tex
+++ b/macros/latex/contrib/easybook/easybook.tex
@@ -23,8 +23,8 @@
name = easybook,
color-scheme = blue,
title = EASYBOOK使用手册,
- version = v2024ab,
- date = 2024/02/11,
+ version = v2024ac,
+ date = 2024/02/12,
authors = 瞿毅,
info = 简便地排版中文学位论文或书籍,
email = toquyi@163.com,
@@ -618,10 +618,10 @@
\begin{options}\noitemsep
\keyval{headruleskip}{页眉线间距}\Default*{0pt}
\keyval{footruleskip}{页脚线间距}\Default*{3.5pt}
- \kvsplit{hdivide}{左边距,页面文本宽度,右边距}\default{}
+ \kvsplit{hdivide}{左边距,版心文本宽度,右边距}\default{}
\kvsplit{hmargin}{左边距,右边距}\default{}
- \keyval{textheight}{页面文本高度}\default{}
- \keychoice{nofoot}{true,\fbox{false}}
+ \keyval{textheight}{版心文本高度}\default{}
+ \keychoice{nofoot}{true,\fbox{false}}\default{}
\begin{ctexexam}
\ebgeoset
{
@@ -726,7 +726,7 @@
\begin{commands}\noitemsep
\command{SetFntSymbsList}[\marg{符号表名}\marg{符号数量}\marg{符号列表}]\default{}
\command{UseFntSymbsList}[\marg{符号表名}]\newtag[Chg]%
- 这两个命令用于在脚注短编号标记为 \code{s} 自定义符号型时设置符号列表。\cs{SetFntSymbsList} 命令用于定义名为 \meta{符号表名} 的符号列表,\cs{UseFntSymbsList} 命令用于启用已定义的符号列表。默认的脚注符号列表是空的,注意使用符号型脚注时计数器 \code{footnote} 的值仍然是递增的,以及定义新列表时 \meta{符号列表} 的写法和命令顺序:
+ 这两个命令用于在脚注短编号标记为 \code{s} 自定义符号型时设置符号列表。\cs{SetFntSymbsList} 命令用于定义名为 \meta{符号表名} 的符号列表,\cs{UseFntSymbsList} 命令用于启用已定义的符号列表。默认的脚注符号列表是空的,注意使用符号型标记的脚注时计数器 \code{footnote} 的值仍然递增,以及定义新列表时 \meta{符号列表} 的写法和命令顺序:
\begin{ctexexam}
\SetFntSymbsList{fancy}{2}{{1}{*}{2}{\P}}
\UseFntSymbsList{fancy}
@@ -1352,7 +1352,7 @@
\shortversion{v = 1.638,date = 2022/03/04,changes = 增加目录条目样式选项注册命令 \cs{RegisterTocName}。}
\shortversion{v = 1.644,date = 2022/03/10,changes = 增加浮动环境目录声明命令 \cs{DeclareFloatList} 配合 \pkg*{caption} 宏包。}
\shortversion{v = 1.682,date = 2022/05/01,changes = 将迷你页判断命令 \cs{notminipage} 改为被保护命令兼容 \pkg*{circledtext} 宏包。}
- \begin{version}[v = 2024ab,date = 2024/02/11,simple]
+ \begin{version}[v = 2024ac,date = 2024/02/12,simple]
\item 核对依赖宏包的更新改动,优化使用手册的内容细节。
\item 修复图表等浮动环境题注目录中条目标签编号的计数器值显示错误问题。
\item 修复附录命令 \cs{appendix} 的可选参数设置英文目录中条目名字和编号失效的问题。