给定浮点类型的计数器名称是什么?

给定浮点类型的计数器名称是什么?

提醒:

\newfloat{〈type〉}{〈placement〉}{〈ext〉}[〈within〉]

我使用它来创建列表,如下面的代码所示。我的问题是:与<type>(或<ext>)关联的计数器名称是什么?我尝试了显而易见的方法(参见代码),但没有成功,然后研究了dtx 文件想弄清楚它是什么,但却无能为力。

\documentclass[full]{l3doc}
\usepackage{mwe} % TEST
\usepackage{float} % DOC

\floatstyle{ruled}
\newfloat{Listing}{h}{lop}

\begin{document}

% \setcounter{theListing}{9}    
\begin{Listing}
  \textbf{In:}

  \verb|\lipsum[1]|

  \textbf{Out:}

  \lipsum[1]

\end{Listing}

\end{document}

答案1

从评论来看,

\documentclass[full]{l3doc}
\usepackage{mwe} 
\usepackage{float} 

\floatstyle{ruled}
\newfloat{Listing}{h}{lop}

\begin{document}

\setcounter{Listing}{10}

\begin{Listing}
  \textbf{In:}

  \verb|\lipsum[1]|

  \textbf{Out:}

  \lipsum[1]
    \caption{ }\label{foo}

\end{Listing}

\end{document}

在此处输入图片描述

相关内容