Graphics, Figures & TablesProblem constructing a List of Floats

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
jdrodrig
Posts: 1
Joined: Wed Dec 02, 2009 7:05 pm

Problem constructing a List of Floats

Post by jdrodrig »

Hi,

I am quite noob with LATEX (actually I am still using SW). I have a problem constructing a table of contents with separate list for Appendix Tables, Tables and Figures.

I managed to install trivfloat and define a new float. But in my Table of Contents now appear a very annoying "(Chapter head:)*"

I am stuck there...Any help will be greatly appreciated!

References xx

Tables
1. xxx
2. xxx

(Chapter head:)*

Appendix Tables
1. xxx

Figures

Code: Select all

\documentclass[12pt]{article}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{sectsty}
\usepackage{fancyhdr}
\usepackage{geometry}
\usepackage{tocloft}
\usepackage{float}
\usepackage{layout}
\usepackage[labelsep=period]{caption}
\usepackage{appendix}
\usepackage{trivfloat}


%TCIMACRO{\TeXButton{Make this page 2}{\setcounter{page}{2}}}%
%BeginExpansion
\setcounter{page}{2}%
%EndExpansion

%TCIMACRO{\TeXButton{Table of Contents (TOC)}{\tableofcontents}}%
%BeginExpansion
\tableofcontents%
%EndExpansion

%TCIMACRO{\TeXButton{listof}{\listof{AppendixTable}{Appendix Tables}}}%
%BeginExpansion
\listof{AppendixTable}{Appendix Tables}%
%EndExpansion

%TCIMACRO{\TeXButton{List of Tables}{\listoftables}}%
%BeginExpansion
\listoftables%
%EndExpansion

%TCIMACRO{\TeXButton{List of Figures}{\listoffigures}}%
%BeginExpansion
\listoffigures%
%EndExpansion
\newpage

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

fatra2
Posts: 126
Joined: Fri May 01, 2009 1:43 pm

Re: Problem constructing a List of Floats

Post by fatra2 »

Hi there,

I am sorry to ask, but looking at the code you gave in your example, I don't see anywhere that the document should begin or end. I always thought the table of content, being part of the document, should be included in the document itself.

That might explain your problem.

Cheers
Post Reply