smartef:如何在類似定理的無編號環境中引用多個項目?

smartef:如何在類似定理的無編號環境中引用多個項目?

我想要命令的輸出

\cref{prob:third-problem,prob:fourth-problem}

第一章內容的第一行 -??在下面顯示的頁面中標記其輸出(帶有兩個s)的- 將變為“練習2.3 和2.4”(不帶任何引號),就像該命令的任何其他命令一樣形式\cref{first,second}

(對於類似\cref{first,fourth,fifth}包含兩個以上問題引用的清單之類的內容也類似。)

如何做到這一點cleveref

\documentclass{memoir}

% theorems    
\usepackage{amsthm}
\usepackage{thmtools}

\declaretheoremstyle[
  headformat=\NAME\NOTE,
  headfont= \sffamily\bfseries,
  headpunct={\vspace{\topsep}\newline},
  numbered=no,
  spaceabove=3\topsep,
  postheadspace=0pt    
]{probs}
\declaretheorem[
  name=EXERCISES,
  style=probs,
]{problemscontent}

\newenvironment{problems}
{\problemscontent}
{\endproblemscontent}

% lists
\usepackage{enumitem}

% For exercises
\newcounter{problemnumber} % number exercises within each chapter

\newlist{problemsenum}{enumerate}{3}
\setlist[problemsenum,1]{%...
    label=\bfseries\sffamily\arabic*.,
    ref={\arabic*}, % strips formatting!
    before=\leavevmode \vspace{-\dimexpr\baselineskip+\topsep\relax},
    after=\stepcounter{problemsenumi}\setcounter{problemnumber}{\value{problemsenumi}},
    start=\value{problemnumber}
}
\makeatletter
\renewcommand{\p@problemsenumi}{\maybe@thechapter{\thechapter}}
\protected\def\maybe@thechapter#1{%
  \ifnum#1=\value{chapter}%
  \else
    #1.%
  \fi
}
\makeatother

\newlist{problempartsenum}{enumerate}{2}
\setlist[problempartsenum,1]{%
    label=\bfseries\sffamily(\alph*),
    ref={(\alph*)},%, % strips formatting!
    before=\vspace{\dimexpr+6pt-\medskipamount\relax},
}

% links
\usepackage[pdftex]{hyperref} 
\hypersetup{%
  breaklinks=true,%
  colorlinks, citecolor=red,%
}

%% Allow ref to section n, not section m.n
%% From 'third installment' of  answer by Christian Hupfer 
%% https://tex.stackexchange.com/a/383608
\usepackage{xparse,xassoccnt}
\usepackage[user,hyperref]{zref}
\RegisterPostLabelHook{\zlabel}
% Replace \arabic{section} with \Roman{section} etc. as needed:
\makeatletter
\zref@newprop{section}{\arabic{section}} 
\zref@addprop{main}{section}
\newcommand{\secref}[1]{%
  \zref@ifrefundefined{#1}{%
    \ref{#1}}{%
    \hyperlink{\zref@extract{#1}{anchor}}%
       {\zref@extract{#1}{section}}}}
 \makeatother
%% End of code from Christian Hupfer's answer

\usepackage{aliascnt}
\usepackage[noabbrev,nameinlink]{cleveref}

\crefformat{problemsenumi}{#2Exercise~#1#3}
\Crefformat{problemsenumi}{#2Exercise~#1#3}
\crefformat{problemscontent}{#2\textnormal{#3}}
\Crefformat{problemscontent}{#2\textnormal{#3}}

\newcommand\crefprob[2]{\cref{#1}~\ref{#2}}
\newcommand\crefrangeprob[2]{Exercises~\textup{\ref{#1}}--\textup{\ref{#2}}}
\newcommand\crefrangeprobpart[2]{\textup{\ref{#1}}--\textup{\ref{#2}}}
\newcommand\crefprobandrangeprobpart[3]{\cref{#1}~\textup{\ref{#2}}--\textup{\ref{#3}}}

\begin{document}

\chapter{First}\label{chap:1}
\setcounter{problemnumber}{1}

See \cref{prob:first-problem} in a different chapter. And \cref{prob:third-problem,prob:fourth-problem}.

See also \cref{prob:chap1-number2}~\ref{prob-part:one-part-b}, that is, 
\crefprob{prob:chap1-number2}{prob-part:one-part-b}.

And consider \crefrangeprob{prob:chap1-number1}{prob:chap1-number2} in this chapter.

What about parts \crefrangeprobpart{prob-part:one-part-a}{prob-part:one-part-b} 
of \cref{prob:chap1-number2} in this chapter?
That is, \crefprobandrangeprobpart{prob:chap1-number2}{prob-part:one-part-a}{prob-part:one-part-b}.

Or \crefprobandrangeprobpart{prob:first-problem}{prob-part:first-problem-part-a}{prob-part:first-problem-part-b} 
in another chapter.

\begin{problems}
\begin{problemsenum}

\item\label{prob:chap1-number1}
A question.

\item\label{prob:chap1-number2}

\begin{problempartsenum}

\item\label{prob-part:one-part-a}
Why is $a = b$?

\item\label{prob-part:one-part-b}
Why is $d = c$?

\item\label{prob-part:one-part-c}
Is $x=y$?

\end{problempartsenum}

\end{problemsenum}

\end{problems}

%%%
\chapter{Second}\label{chap:2}
\setcounter{problemnumber}{1}

Refer to \cref{prob:first-problem} in this chapter---specifically, to 
\crefprob{prob:first-problem}{prob-part:first-problem-part-b}.


And see \crefrangeprob{prob:third-problem}{prob:fifth-problem}.

\section{First section}

\begin{problems}\label{probs:seconeprobs}
\begin{problemsenum}

\item \label{prob:first-problem}
First problem.

\begin{problempartsenum}

\item\label{prob-part:first-problem-part-a}
Why is $a = b$?

\item\label{prob-part:first-problem-part-b}
Why is $d = c$?

\item\label{prob-part:first-problem-part-c}
Is $x=y$?

\end{problempartsenum}

\item 
Second problem.

\end{problemsenum}
\end{problems}

\section{Second section}

\begin{problems}\label{probs:sectwoprobs}
\begin{problemsenum}

\item \label{prob:third-problem}
First problem.

\item \label{prob:fourth-problem}
Second problem.

\begin{problempartsenum}

\item\label{prob-part-fourth-problem-part-a}
Is it?

\item\label{prob-part-fourth-problem-part-b}
Why not?

\end{problempartsenum}

\item \label{prob:fifth-problem}
Fifth problem.

\end{problemsenum}
\end{problems}

\end{document}

缺 smartef 複數和“and”。

筆記:

  1. problems環境以特殊方式定義,以便允許cleveref引用其中列舉的項目,而該環境本身不是類似編號定理的環境。該命令以及相關的命令和cleveref結構是從其他帖子中的各種答案中收集的。這些帖子包括僅包含小數點後部分節號的參考如何使用cleveref獲得類似定理的名稱和列表項編號?
  2. 我實際的、更複雜的文檔確實使用了memoir文檔類別。然而,對於這個 MWE,book如果明確載入其他套件,也可能使用該類別。

答案1

這可以透過包含來解決

\crefname{problemsenumi}{Exercise}{Exercises}

在序言中。

(我喜歡的缺少的牛津(串行)逗號可以按照答案插入可以讓 smartef 使用牛津逗號進行多次引用嗎?,即透過包含\newcommand{\creflastconjunction}{, and\nobreakspace}.

相關內容