I have to create a "List of boxes" for my document. A "box" is basically a fancy-formatted table. But te problem is that I need to create a list of tables and a list of boxes.
I thought create a "box-something" environment like described in http://kuscsik.blogspot.com/2006/12/how ... latex.html . But after that, how can I make a "List of boxes"?
My idea is to create an environment with a code like:
Code: Select all
\newcounter{Examplecount}\setcounter{Examplecount}{0}\newenvironment{example}{% This is the begin code\stepcounter{Examplecount} {\bf\small Example} \arabic{Examplecount}\scriptsize \begin{it}}{% This is the end code\end{it} }\begin{document}\begin{example}This is an example\end{example}
Thanks!