gpt4 book ai didi

latex - 如何在 LaTeX 中自定义对子列表的引用?

转载 作者:行者123 更新时间:2023-12-04 02:04:07 25 4
gpt4 key购买 nike

我的 LaTeX 文档中有一个列表/子列表结构。默认情况下,子列表用字母分隔,所以你最终得到这个:

1. Item
(a) sub item
(b) sub item

在我的文档中,我有超过 26 个子项目,所以我遇到了一个计数器溢出错误,我通过重写子项目标签来解决这个错误,现在它们看起来像这样
1. Item
1.1 sub item
1.2 sub item

我在其中一个项目上贴了标签,以便稍后引用具体步骤。问题是当引用被渲染时,它是使用一个字母来渲染的,而不是子项目的编号。

这是一个显示问题的示例文档。
\documentclass[11pt]{report}

\begin{document}

\renewcommand{\labelenumii}{\arabic{enumi}.\arabic{enumii}}

\begin{enumerate}
\item Item
\begin{enumerate}
\item \label{lbl} Label here
\end{enumerate}
\end{enumerate}

Ref: \ref{lbl}

\end{document}

这被渲染成这样:
1. Item
1.1 Label here
Ref: 1a

所以不是说“Ref: 1.1”,而是使用“Ref: 1.a”。有没有办法让\ref 使用源枚举的编号?如果没有,是否可以生成对超过 26 个项目的子列表中项目的正确引用?

最佳答案

我正在查看我的 The LaTeX Companion,第 129 页的副本,从我所看到的,我会建议如下:

\renewcommand{\theenumii}{\arabic{enumii}}
\renewcommand{\labelenumii}{\theenumi.\theenumii.}
\makeatletter
\renewcommand{\p@enumii}{\theenumi.}
\makeatother

不过,我目前无法访问工作的 LaTeX 环境来对此进行测试。

关于latex - 如何在 LaTeX 中自定义对子列表的引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/691351/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com