題名の通り箇条書きにキャプションを追加したいと思っています。
調べてみたら
\DeclareFloatingEnvironment[placement={!ht},name=リスト]{mylist}
とプリアンブルに書いて
\begin{mylist}
\caption{hoge}
\begin{itemize}
\item ほげほげ
…
\end{itemize}
\end{mylist}
とすれば出来るとの記事を見つけて試してみました。
確かに出力結果は
リスト 1.1: hoge
となったので、この記述は正しいのでしょう。
ですが、私はキャプションにつく番号を
\makeatletter
\renewcommand{\thefigure}{
\arabic{chapter}-\arabic{section}.\arabic{figure}
}
\@addtoreset{figure}{section}
\renewcommand{\lstlistingname}{ソース}
\AtBeginDocument{
\renewcommand{\thelstlisting}{
:\arabic{chapter}-\arabic{section}.\arabic{lstlisting}
}
}
\@addtoreset{lstlisting}{section}
\makeatother
で章-節.項目番号としています。
箇条書きのキャプションにこの方法は適用できますでしょうか?
どうぞ宜しくお願い致します、