[Tex/LaTex] “Table”/”Figure” in items of List of tables/figures

table of contents

Possible Duplicate:
Adding word 'Table' before each entry in list of tables

Hello guys the list of figures and tables in my thesis is listed as (I use \listoftables and \listoffigures)

Table

1.2 Name1           

But I want it to be like

Table 

Table 1.2 Name1           

I appreciate any help.

Best Answer

This solution uses the tocloft package.The way that your list of tables and list of figures appear are defined by the commands \cftfigfont and \cfttabfont. Write the following code in your preamble.

\usepackage{tocloft}

\renewcommand{\cftfigfont}{Figure }
\renewcommand{\cfttabfont}{Table }