乳胶参考中的自定义子小节编号

时间:2019-12-15 17:26:03

标签: latex xelatex

我正在尝试使用自己的计数器并为自定义节名称命名\ subsubsection,但这对\ ref没有影响。

\newcounter{strategyCounter}
\titleformat{\subsubsection} [hang] 
    {\normalsize\bfseries\sffamily} 
    {Strategy\stepcounter{strategyCounter}\thestrategyCounter}
    {1em}{}
...
\subsubsection{Foo}\label{foo}
...
\subsubsection{Bar}\label{bar}
...
see \ref{foo} // output: 1.1.1.1; expected: Strategy 1
see \nameref{foo} // output: Foo; expected: Foo

有人有主意吗?

0 个答案:

没有答案