さまざまな相互参照タイプを作成する方法

さまざまな相互参照タイプを作成する方法

連続するポイントを参照する必要があるが、それは「and」で接続される場合もあれば「or」で接続される場合もある。つまり、

1.1a、b、c、d

または

1.1a、b、c、またはd

これは、最初のタイプの参照 (「and」を使用) を提供する MWE です。ただし、2 番目のタイプ (「or」を使用) も利用できる方法をまだ探しています。そのような方法はありますか?

\documentclass[ngerman, 12pt]{article}
\usepackage{enumitem}
\usepackage[german]{cleveref}
\parindent0pt

\labelcrefmultiformat{enumi}%
{\edef\crefstripprefixinfo{#1}#2#1#3}%
{ and~#2\crefstripprefix{\crefstripprefixinfo}{#1}#3}%
{, #2\crefstripprefix{\crefstripprefixinfo}{#1}#3}%
{, and~#2\crefstripprefix{\crefstripprefixinfo}{#1}#3}

\setlist[1]{leftmargin=*}
\setlist[2]{label=\alph*}
\setlist[3]{label=(\roman*)}

\begin{document}

\section{References}

\begin{enumerate}[ref=\thesection.\arabic*]
\item Fruits
\begin{enumerate}[ref=\theenumi\alph*]
\item \label{en:apples} Apples
\item \label{en:bananas} Bananas
\item \label{en:pears} Pears
\item \label{en:ananas} Ananas
\end{enumerate}
\item \label{en:vegetables} Vegetables
\end{enumerate}

The first type of references (with ``and'') works perfectly fine: \labelcref{en:apples,,en:bananas,,en:pears,,en:ananas}.

\end{document}

関連情報