2

I am using the trivfloat package to define new environment for graphs. So far so good. I would like to make a list of graphs in the following layout:

Graph 1: This is my graph

Graph 2: This is my second graph

With tables and figures I reconfigure the list with the following code:

\renewcommand{\cfttabaftersnum}{:}
\newlength\tablelen
\settowidth\tablelen{Table}
\addtolength\cfttabnumwidth{\tablelen}
\renewcommand\cfttabpresnum{Table }

How can I do this with the graph custom float env?

lockstep
  • 250,273

1 Answers1

2

Converting alyo's comment into an answer:

\makeatletter
\renewcommand\numberline[1]{Graf #1:\hspace{1.8em}}
\makeatother
\listofgraphs

(Of course, a full example would be a better answer!)

Joseph Wright
  • 259,911
  • 34
  • 706
  • 1,036