与节标记类似的点符号

与节标记类似的点符号

是否有标准的印刷符号观点用于引用前面的列表,类似于章节标记§?概念示例:

对于上面的•3...

答案1

我不知道“点”的标准印刷符号,正如 Marco 指出的那样,使用这样的符号可能会造成混乱并产生歧义(因为它是一种非标准惯例)。也就是说,您可以使用聪明人包以自动化方式重新定义用于交叉引用列表中项目的标签。在下面的示例中,我说明了环境cleveref第一级项目使用的标准标签enumerate,并展示了使用\textbullet、 和\textopenbullet(后者来自textcomp包)的两个新选项。

我宁愿牺牲简洁性来换取清晰度并使用标准词“item”或“items”(及其大写变体),但是否使用某些符号则取决于您。

\documentclass{article}
\usepackage{textcomp}
\usepackage{cleveref}

\newcommand\ItBu{
  \crefname{enumi}{\textbullet}{\textbullet}
  \Crefname{enumi}{\textbullet}{\textbullet}
}

\newcommand\ItOBu{
  \crefname{enumi}{\textopenbullet}{\textopenbullet}
  \Crefname{enumi}{\textopenbullet}{\textopenbullet}
}

\begin{document}

\begin{enumerate}
  \item First item.\label{firsta}
  \item Second item.\label{seconda}
  \item Third item.\label{thirda}
\end{enumerate}

\cref{thirda}

\cref{firsta,seconda}

{
\ItBu
\begin{enumerate}
  \item First item.\label{firstb}
  \item Second item.\label{secondb}
  \item Third item.\label{thirdb}
\end{enumerate}

\cref{thirdb}

\cref{firstb,secondb}
}

{
\ItOBu
\begin{enumerate}
  \item First item.\label{firstc}
  \item Second item.\label{secondc}
  \item Third item.\label{thirdc}
\end{enumerate}

\cref{thirdc}

\cref{firstc,secondc}
}

\end{document}

在此处输入图片描述

答案2

您可能对以下符号感兴趣,它们都在文本模式下运行:

\textbullet 
\textperiodcentered (may be too small, but you appear to 
   reference it in your question)
\textopenbullet (requires loading the "textcomp" package)

这三个符号如下所示:

在此处输入图片描述

相关内容