texlive[72557] Master/texmf-dist: dashrulex (15oct24)
commits+karl at tug.org
commits+karl at tug.org
Tue Oct 15 22:09:11 CEST 2024
Revision: 72557
https://tug.org/svn/texlive?view=revision&revision=72557
Author: karl
Date: 2024-10-15 22:09:11 +0200 (Tue, 15 Oct 2024)
Log Message:
-----------
dashrulex (15oct24)
Modified Paths:
--------------
trunk/Master/texmf-dist/doc/latex/dashrulex/README.md
trunk/Master/texmf-dist/doc/latex/dashrulex/dashrulex.pdf
trunk/Master/texmf-dist/doc/latex/dashrulex/dashrulex.tex
trunk/Master/texmf-dist/tex/latex/dashrulex/dashrulex.sty
Modified: trunk/Master/texmf-dist/doc/latex/dashrulex/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/dashrulex/README.md 2024-10-15 20:09:02 UTC (rev 72556)
+++ trunk/Master/texmf-dist/doc/latex/dashrulex/README.md 2024-10-15 20:09:11 UTC (rev 72557)
@@ -1,5 +1,5 @@
# The `dashrulex` package
-Draw dashed rules (v1.01a)
+Draw dashed rules (v1.01b)
## Abstract
The `dashrulex` package provides a flexible solution for drawing dashed rules in the body, and currently provides two commands `\hdashrule` and `\hanyrule`. It's written in LaTeX3 and can be used as an alternative to the `dashrule` package.
Modified: trunk/Master/texmf-dist/doc/latex/dashrulex/dashrulex.pdf
===================================================================
(Binary files differ)
Modified: trunk/Master/texmf-dist/doc/latex/dashrulex/dashrulex.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/dashrulex/dashrulex.tex 2024-10-15 20:09:02 UTC (rev 72556)
+++ trunk/Master/texmf-dist/doc/latex/dashrulex/dashrulex.tex 2024-10-15 20:09:11 UTC (rev 72557)
@@ -1,14 +1,15 @@
\documentclass[load-preamble+]{cnltx-doc}
-\usepackage{setspace,hologo,enumitem,dashrulex,tikz}
+\usepackage{hologo,enumitem,dashrulex,tikz,codehigh}
\usepackage[noto]{newtxmath}
\setcnltx
{
package = dashrulex,
title = dashrulex,
- version = v1.01a,
- date = 2024/07/18,
+ version = v1.01b,
+ date = 2024/10/14,
authors = Qu Yi,
+ title = \dashrulex{} package,
info = Draw dashed rules,
email = toquyi at 163.com,
url = https://github.com/texno3/dashrulex,
@@ -17,10 +18,7 @@
The \pkg*{dashrulex} package provides a flexible solution for drawing dashed rules in the body, and currently provides two commands \cs{hdashrule} and \cs{hanyrule}. It's written in \hologo{LaTeX3} and can be used as an alternative to the \pkg*{dashrule} package.
},
color-scheme = blue,
- listings-options = {numbers = none,gobble = 2,lineskip = 1pt},
- pre-output = {\parindent = 0em\setstretch{1.3}},
- before-skip = \smallskipamount,
- after-skip = \smallskipamount
+ title-format = \LARGE
}
\makeatletter
\newcommand{\splitmeta}[3][\code{,}]{\meta{#2}#1\meta{#3}}
@@ -40,9 +38,11 @@
\newnote{\newtag}[1]{\textcolor{red}{#1}}
\renewcommand{\emph}[1]{\textcolor{red}{#1}}
\renewcommand{\cnltx at write@lastname}{}
+\renewcommand{\cnltxpackagenameformat}[1]{\textcolor{cnltx}{\textsf{#1}}}
\setlist{nosep,topsep = \smallskipamount}
\setlist[description,1]{leftmargin = \parindent}
\setlist[itemize,1]{leftmargin = *}
+\SetCodeHighStyle[default]{2}{cs}
\makeatother
\begin{document}
@@ -53,41 +53,41 @@
\begin{commands}
\command{hdashrule}[\oarg{raise}\oarg{leader}\marg{width}\marg{thickness list}\marg{dash rules}]
The command to draw horizontal dashed rules, based on the \cs{rule} command, and the same as the \cs{rule} command when the \meta{dash rules} are empty. \meta{raise} is the vertical offset of the rule. \meta{leader} is the alignment of the dashed line fill, which can be empty, \code{c}, or \code{x} (the \textcolor{red}{default}), corresponding to the \cs{leaders}, \cs{cleaders}, and \cs{xleaders} commands, respectively. \meta{width} is the length of the dashed line, which can be set to \cs{fill} when used to fill the remaining part of the current text line. \meta{thickness list} is a rule for the height of \textcolor{red}{vertical} lines, separated by \textcolor{red}{commas} and written as \splitmeta{height 1}{height a}\code{,...}, where \meta{height 1} denotes the height of a solid line and \meta{height a} denotes the height of a blank space. \meta{dash rules} stands for \textcolor{red}{horizontal} dashed line rules, which expressed as \splitmeta[\code{|}]{length 1}{length a}\code{,}\splitmeta[\code{|}]{length 2}{length b}\code{,...}, where \meta{length 1} represents the length of the solid line and \meta{length a} represents the length of the blank space, such as \code{5pt|2pt,3pt}, if the blank space is empty, then it is equal to the solid line length.
- \begin{example}
- 1X\rule{2cm}{1pt}x \\
- 2X\hdashrule{2cm}{1pt}{}x \\
- 3X\hdashrule{2cm}{1pt}{1pt}x \\
- 4X\hdashrule{4cm}{1pt}{1pt}x \\
- 5X\hdashrule[0.5ex]{4cm}{1pt}{1pt}x \\
- 6X\hdashrule[0.5ex]{4cm}{1pt}{3mm}x \\
- 7X\hdashrule[0.5ex]{4cm}{1mm}{3mm}x \\
- 8X\hdashrule[0.5ex]{4cm-3mm}{1mm}{3mm}\vrulemod[0.5ex]{3mm}{1mm}x \\
- 9X\hdashrule[0.5ex]{4cm}{1mm}{3mm|3pt}x \\
- 10X\hdashrule[0.5ex]{4cm}{1mm}{3mm|3pt,1mm|2pt}x \\
- 11X\hdashrule[0.5ex]{4cm}{2pt,1pt,1pt}{3mm|3pt,1mm|2pt}x
- \end{example}
+\begin{demohigh}
+1X\rule{2cm}{1pt}x \\
+2X\hdashrule{2cm}{1pt}{}x \\
+3X\hdashrule{2cm}{1pt}{1pt}x \\
+4X\hdashrule{4cm}{1pt}{1pt}x \\
+5X\hdashrule[0.5ex]{4cm}{1pt}{1pt}x \\
+6X\hdashrule[0.5ex]{4cm}{1pt}{3mm}x \\
+7X\hdashrule[0.5ex]{4cm}{1mm}{3mm}x \\
+8X\hdashrule[0.5ex]{4cm-3mm}{1mm}{3mm}\vrulemod[0.5ex]{3mm}{1mm}x \\
+9X\hdashrule[0.5ex]{4cm}{1mm}{3mm|3pt}x \\
+10X\hdashrule[0.5ex]{4cm}{1mm}{3mm|3pt,1mm|2pt}x \\
+11X\hdashrule[0.5ex]{4cm}{2pt,1pt,1pt}{3mm|3pt,1mm|2pt}x
+\end{demohigh}
\command{vrulemod}[\oarg{raise}\oarg{height}\oarg{depth}\marg{width}\marg{thickness list}]
The vertical model used to fill the dashed line. \meta{thickness list} is consistent with the \cs{hdashrule} command, \meta{width} represents the length of the component, and the three optional parameters are consistent with those of the \cs{raisebox} command.
\command{hanyrule}[\oarg{leader}\marg{width}\marg{symbol list}]
This command sets the length of the dotted rule and fills it with arbitrary symbols. \meta{symbol list} can be more than one symbol and they are separated by \textcolor{red}{commas}. Symbols are best packed in boxes of a certain length, as spacing between symbols is not provided.
- \begin{example}
- \newcommand{\dblblock}
- {%
- \tikz[color=teal]
- {
- \draw[line width=0.8mm](0mm,1.1mm)--(3mm,1.1mm);
- \draw[line width=0.3mm](0mm,0mm)--(3mm,0mm);
- }%
- }
- 1X\hanyrule[]{5cm}{\makebox[8pt]{$\cdot$}}x \\
- 2X\hanyrule[c]{5cm}{\makebox[8pt]{$\cdot$}}x \\
- 3X\hanyrule[x]{5cm}{\makebox[8pt]{$\cdot$}}x \\
- 4X\hanyrule[x]{5cm}{\makebox[8pt][l]{$\cdot$}}x \\
- 5X\hanyrule[x]{5cm}{\makebox[8pt][r]{$\cdot$}}x \\
- 6X\hanyrule[x]{5cm}{\makebox[8pt]{$\cdot$},\makebox[8pt]{$\circ$}}x \\
- 7X\hanyrule[x]{5cm}{\makebox[5mm]{\vrulemod{3mm}{2pt,1pt,1pt}}}x \\
- 8X\hanyrule[x]{5cm}{\makebox[5mm]{\dblblock}}x
- \end{example}
+\begin{demohigh}
+\newcommand{\dblblock}
+ {%
+ \tikz[color=teal]
+ {
+ \draw[line width=0.8mm](0mm,1.1mm)--(3mm,1.1mm);
+ \draw[line width=0.3mm](0mm,0mm)--(3mm,0mm);
+ }%
+ }
+1X\hanyrule[]{5cm}{\makebox[8pt]{$\cdot$}}x \\
+2X\hanyrule[c]{5cm}{\makebox[8pt]{$\cdot$}}x \\
+3X\hanyrule[x]{5cm}{\makebox[8pt]{$\cdot$}}x \\
+4X\hanyrule[x]{5cm}{\makebox[8pt][l]{$\cdot$}}x \\
+5X\hanyrule[x]{5cm}{\makebox[8pt][r]{$\cdot$}}x \\
+6X\hanyrule[x]{5cm}{\makebox[8pt]{$\cdot$},\makebox[8pt]{$\circ$}}x \\
+7X\hanyrule[x]{5cm}{\makebox[5mm]{\vrulemod{3mm}{2pt,1pt,1pt}}}x \\
+8X\hanyrule[x]{5cm}{\makebox[5mm]{\dblblock}}x
+\end{demohigh}
\end{commands}
\section{Known issues}
@@ -95,5 +95,6 @@
\appendix
\nocite{*}
+\AddToHook{cmd/printindex/before}{\clearpage}
-\end{document}
\ No newline at end of file
+\end{document}
Modified: trunk/Master/texmf-dist/tex/latex/dashrulex/dashrulex.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/dashrulex/dashrulex.sty 2024-10-15 20:09:02 UTC (rev 72556)
+++ trunk/Master/texmf-dist/tex/latex/dashrulex/dashrulex.sty 2024-10-15 20:09:11 UTC (rev 72557)
@@ -9,7 +9,7 @@
% https://creativecommons.org/licenses/by/4.0/legalcode
\NeedsTeXFormat{LaTeX2e}[2012/02/12]
\RequirePackage{xparse}
-\ProvidesExplPackage{dashrulex}{2024/07/18}{1.01a}
+\ProvidesExplPackage{dashrulex}{2024/10/14}{1.01b}
{Draw dashed rules}
\DeclareDocumentCommand{\hdashrule}{O{0pt}O{x}mmm}
{
@@ -88,4 +88,4 @@
}
\endinput
%
-% End of file `dashrulex.sty'.
\ No newline at end of file
+% End of file `dashrulex.sty'.
More information about the tex-live-commits
mailing list.