I have a file with 600 images, divided in chapters, and I would like to be able for one chapter (below 'catalog') to only put the number of the figure in the caption, with the description being in the list of figures. I don't want 'Fig. 1', only '1'. However, I would like this to be applied only for one chapter, and not in all of the chapters. Is that possible?
Code: Select all
\documentclass[11pt,a4paper,twoside]{report}
\usepackage{setspace}
\usepackage[dvipdfm]{graphicx}
\usepackage{graphicx}
\usepackage{color}
\usepackage{epsf}
\usepackage{supertabular}
\usepackage{picins}
\usepackage{longtable}
\usepackage{semtrans}
\usepackage{fancyhdr}
\usepackage{natbib}
\usepackage{threeparttable}
\usepackage{tabularx}
\usepackage{synttree}
\usepackage{multirow}
\usepackage{amsfonts}
\usepackage{rotating}
\usepackage{lscape}
\usepackage{hvfloat}
\usepackage{sidecap}
\usepackage{float}
\usepackage{pgf}
\usepackage{tikz}
\usetikzlibrary[trees]
\setlength{\baselineskip}{13pt}
\usepackage[top=18mm, bottom=18mm, left=15mm, right=15mm]{geometry}
\pagestyle{fancy}
\usepackage{lipsum}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\chapter{Introduction}
\pagenumbering{arabic}
\fancyhead[CE]{\leftmark}
\fancyhead[CO]{\rightmark}
\fancyfoot[C]{\thepage}
\input{intro}
\chapter[Catalog]{Catalog}
\fancyhead[LE]{The catalogue}
\fancyhead[RO]{}
\fancyfoot[C]{\thepage}
\input{catalogue1}
\end{document}
and an example from the catalog file regarding a figure
Code: Select all
\begin{minipage}{5cm}
\includegraphics[scale=0.55]{pic1}
\caption[Drawing of blah]{}
\end{minipage}
Many thanks in advance
Christina