\midrule
booktabs パッケージのような点線の罫線が欲しいです。
私は booktabs.sty からコードを取得し、それを簡略化して次のコードを作成しました。
\documentclass{article}
\usepackage{array}
\usepackage{booktabs}
\makeatletter{}
\def\dotrule{\noalign{\ifnum0=`}\fi
\@aboverulesep=\aboverulesep
\global\@belowrulesep=\belowrulesep
\global\@thisruleclass=\@ne
\@BTdotted}
\def\@BTdotted{%
{\CT@arc@\hrule\@height\@thisrulewidth}%
\futurenonspacelet\@tempa\@BTendrule}
\makeatother{}
\begin{document}
Text
\begin{tabular}{lr}\toprule
Huu& Haa \\\dotrule
\end{tabular}
\end{document}
そして今、私は中央部分\hrule\@height\@thisrulewidth
を線ではなく点を作るものに置き換えることに行き詰まっています。私は に苦労してきました\leaders
が、理解できませんでした。誰かにアイデアがあるかもしれません。
もちろん、同様の質問がたくさん見つかりました。しかし、コツは、booktabs パッケージのパラメータを持つコマンドを使用することです。
答え1
これは、 ( 、および)\dotrule
の構文とパラメータを尊重しますが、の環境でのみ使用できるコマンドです。点線は Tikz によって描画されます (Tikz のツールを使用して、点線の特性を変更することができます)。booktabs
aboverulesep
belowrulesep
lightrulewidth
{NiceTabular}
nicematrix
\documentclass{article}
\usepackage{nicematrix}
\usepackage{booktabs}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{xcolor}
\ExplSyntaxOn
\makeatletter
\cs_set:Npn \dotrule
{
\noalign \bgroup
\peek_meaning:NTF [
{ \__dose_dotrule: }
{ \__dose_dotrule: [ \lightrulewidth ] }
}
\cs_set:Npn \__dose_dotrule: [ #1 ]
{
\skip_vertical:n { \aboverulesep + \belowrulesep + #1 }
\egroup
\tl_gput_right:Nx \g_nicematrix_code_after_tl
{ \__dose_dotrule:nn { \int_use:N \c@iRow } { #1 } }
}
\cs_new_protected:Nn \__dose_dotrule:nn
{
{
\dim_set:Nn \l_tmpa_dim { \aboverulesep + ( #2 ) / 2 }
\CT@arc@
\tikz \draw [ dotted , line~width = #2 ]
([yshift=-\l_tmpa_dim]#1-|1)
--
([yshift=-\l_tmpa_dim]#1-| \int_eval:n { \c@jCol + 1 }) ;
}
}
\makeatother
\ExplSyntaxOff
\begin{document}
\begin{NiceTabular}{cc}
\toprule
Header 1 & Header 2 \\
\dotrule
text & text \\
some text & other text \\
\bottomrule
\end{NiceTabular}
%
\hspace{2cm}
%
\begin{NiceTabular}{cc}
\toprule
Header 1 & Header 2 \\
\midrule
text & text \\
some text & other text \\
\bottomrule
\end{NiceTabular}
\vspace{1cm}
\arrayrulecolor{blue}
\begin{NiceTabular}{cc}
\toprule
Header 1 & Header 2 \\
\dotrule[3pt]% <-- mandatory
text & text \\
some text & other text \\
\bottomrule
\end{NiceTabular}
%
\hspace{2cm}
%
\begin{NiceTabular}{cc}
\toprule
Header 1 & Header 2 \\
\midrule[3pt]
text & text \\
some text & other text \\
\bottomrule
\end{NiceTabular}
\end{document}
答え2
booktabs
環境の簡単な解決策tabularray
パッケージ:
\documentclass{article}
\usepackage{tabularray}
\UseTblrLibrary{booktabs}
\begin{document}
\begin{booktabs}{lll}
\toprule
Alpha & Beta & Gamma \\
\midrule[dashed]
Epsilon & Zeta & Eta \\
\midrule[dotted]
Iota & Kappa & Lambda \\
\bottomrule
\end{booktabs}
\end{document}