我目前正在使用 enumitem 並為文件中的清單建立了一個環境。其內容如下:
\newenvironment{alternativas}[1][0]
{
\begin{enumerate}[label={\Alph*)}, itemsep=#1cm, topsep = 0.5cm, wide=0pt,labelwidth=.5cm,leftmargin=!]
}
{
\end{enumerate}
}
(雖然我認為這對這個問題來說並不重要)
我一直在尋找一種自動調整 itemsep 的方法,以使所有項目之間的空間相等。這就是我不想要發生:
由於分數使用更多的高度,ABC 之間的間距與 CDE 之間的間距不同,這對我來說看起來很奇怪。我目前的修復是使用環境中的可選參數手動調整 itemsep 參數並使其看起來像這樣:
但是,手動調整速度很慢,而且我需要一些經驗不足的人來使用這個環境。有沒有辦法讓 itemep 自動設定為項目之間的最大間隔?我搜索了很多但找不到它(也許我的英語不好沒有幫助)。謝謝!
答案1
我提出的解決方案是測量每個項目的高度和深度,從而獲得最大的高度和深度。如有必要,基線跳躍設定為最大高度加上最大深度加上 2pt。
\documentclass{article}
\usepackage{xparse,enumitem,amsmath}
\ExplSyntaxOn
\NewDocumentCommand{\alternatives}{m}
{
\blaz_alternativas:n { #1 }
}
\seq_new:N \l__blaz_alternativas_seq
\box_new:N \l__blaz_alternativas_item_box
\dim_new:N \l__blaz_alternativas_height_dim
\dim_new:N \l__blaz_alternativas_depth_dim
\cs_new_protected:Nn \blaz_alternativas:n
{
% first populate the sequence of items
\seq_set_split:Nnn \l__blaz_alternativas_seq { \\ } { #1 }
% now measure the heights and depths
\dim_zero:N \l__blaz_alternativas_height_dim
\dim_zero:N \l__blaz_alternativas_depth_dim
\seq_indexed_map_inline:Nn \l__blaz_alternativas_seq
{
% set the box to the current item
\hbox_set:Nn \l__blaz_alternativas_item_box { ##2 }
% measure the height if not the first item
\int_compare:nT { ##1 > 1 }
{
\dim_set:Nn \l__blaz_alternativas_height_dim
{
\dim_max:nn { \l__blaz_alternativas_height_dim }
{ \box_ht:N \l__blaz_alternativas_item_box }
}
}
% measure the depth if not the last item
\int_compare:nT { ##1 < \seq_count:N \l__blaz_alternativas_seq }
{
\dim_set:Nn \l__blaz_alternativas_depth_dim
{
\dim_max:nn { \l__blaz_alternativas_depth_dim }
{ \box_dp:N \l__blaz_alternativas_item_box }
}
}
}
\begin{enumerate}[label={\Alph*)},wide=0pt,labelwidth=.5cm,leftmargin=!,itemsep=0pt]
% set the baselineskip
\skip_set:Nn \baselineskip
{
\dim_max:nn { \baselineskip }
{ \l__blaz_alternativas_height_dim + \l__blaz_alternativas_depth_dim }
+ 2pt
}
% deliver the items
\seq_map_inline:Nn \l__blaz_alternativas_seq { \item ##1 }
\end{enumerate}
}
\ExplSyntaxOff
\begin{document}
\alternatives{ $1$ \\ $2$ \\ $3$ \\ $4$ \\ $5$ }
\alternatives{
$1$ \\
$\dfrac{3}{2}$ \\
$\dfrac{3}{4}$ \\
$4$ \\
$5$
}
\end{document}
\hphantom{$-$}
這是一個在每個不以 開頭的項目前面添加的版本$-
,前提是至少有一個以 開頭。
\documentclass{article}
\usepackage{xparse,enumitem,amsmath}
\ExplSyntaxOn
\NewDocumentCommand{\alternatives}{m}
{
\blaz_alternativas:n { #1 }
}
\seq_new:N \l__blaz_alternativas_seq
\box_new:N \l__blaz_alternativas_item_box
\dim_new:N \l__blaz_alternativas_height_dim
\dim_new:N \l__blaz_alternativas_depth_dim
\cs_new_protected:Nn \blaz_alternativas:n
{
% first populate the sequence of items
\seq_set_split:Nnn \l__blaz_alternativas_seq { \\ } { #1 }
% now measure the heights and depths
\dim_zero:N \l__blaz_alternativas_height_dim
\dim_zero:N \l__blaz_alternativas_depth_dim
\seq_indexed_map_inline:Nn \l__blaz_alternativas_seq
{
% set the box to the current item
\hbox_set:Nn \l__blaz_alternativas_item_box { ##2 }
% measure the height if not the first item
\int_compare:nT { ##1 > 1 }
{
\dim_set:Nn \l__blaz_alternativas_height_dim
{
\dim_max:nn { \l__blaz_alternativas_height_dim }
{ \box_ht:N \l__blaz_alternativas_item_box }
}
}
% measure the depth if not the last item
\int_compare:nT { ##1 < \seq_count:N \l__blaz_alternativas_seq }
{
\dim_set:Nn \l__blaz_alternativas_depth_dim
{
\dim_max:nn { \l__blaz_alternativas_depth_dim }
{ \box_dp:N \l__blaz_alternativas_item_box }
}
}
}
\begin{enumerate}[label={\Alph*)},wide=0pt,labelwidth=.5cm,leftmargin=!,itemsep=0pt]
% set the baselineskip
\skip_set:Nn \baselineskip
{
\dim_max:nn { \baselineskip }
{ \l__blaz_alternativas_height_dim + \l__blaz_alternativas_depth_dim }
+ 2pt
}
% check whether some items start with $-
\cs_set_protected:Nn \__blaz_alternativas_minus:n {##1} % do nothing by default
\seq_map_inline:Nn \l__blaz_alternativas_seq
{
\regex_match:nnT { \A \$\- } { ##1 }
{
\seq_map_break:n
{
\cs_set_eq:NN \__blaz_alternativas_minus:n \__blaz_alternativas_addminus:n
}
}
}
% deliver the items
\seq_map_inline:Nn \l__blaz_alternativas_seq { \item \__blaz_alternativas_minus:n {##1} }
\end{enumerate}
}
\cs_new_protected:Nn \__blaz_alternativas_addminus:n
{
\regex_match:nnF { \A \$\- } { #1 } { \hphantom{$-$} } #1
}
\ExplSyntaxOff
\begin{document}
\alternatives{ $1$ \\ $2$ \\ $3$ \\ $4$ \\ $5$ }
\alternatives{
$-1$ \\
$-\dfrac{3}{2}$ \\
$\dfrac{3}{4}$ \\
$4$ \\
$5$
}
\end{document}
答案2
這是一種基於表格的完全不同的方法。我使用了稍微修改過的版本自動表格行編號 與cellspace
封裝結合以保持條目周圍的間距。由於我右對齊了列,這似乎也解決了你的後續問題:
\documentclass{article}
\usepackage[column=0]{cellspace}
\setlength\cellspacetoplimit{6pt}
\setlength\cellspacebottomlimit{\cellspacetoplimit}
\usepackage{array,etoolbox}
\preto\tabular{\setcounter{magicrownumbers}{0}}
\newcounter{magicrownumbers}
\newcommand\rownumber{\stepcounter{magicrownumbers}\Alph{magicrownumbers}}
\usepackage{amsmath}
\newenvironment{myalternatives}[1][0]
{\begin{tabular}{@{\makebox[3em][r]{\rownumber)~}} >{$}0r<{$}}}
{\end{tabular}}
\begin{document}
\begin{myalternatives}
1 \\
\dfrac{3}{2} \\
\dfrac{3}{4} \\
4 \\
5 \\
-6\\
\end{myalternatives}
\end{document}