Search found 9 matches

by spiderchee84
Sun Dec 06, 2009 3:31 pm
Forum: Graphics, Figures & Tables
Topic: Insert square bracket in short caption
Replies: 2
Views: 7178

Insert square bracket in short caption

Dear all,

Is there any way to insert square bracket in the short caption of a table?

Below is a minimal example of my code:


\documentclass{report}

\begin{document}

\listoftables

\begin{table}
\caption[I wish to insert $[a,b]$]{Long caption}
\centering
\begin{tabular}{cc}
a&b\\
c&d\\
\end ...
by spiderchee84
Sun Oct 25, 2009 11:15 am
Forum: General
Topic: Some Text Before Bibliography
Replies: 1
Views: 1437

Some Text Before Bibliography

Dear all,

Is it possible to insert some text before the bibliography? I have browsed through the web and couldn't find any solution. This is a minimal example of what I want.


\documentclass{report}

\begin{document}

\begin{thebibliography}{9}

I want to insert some text here.

\bibitem{1stRef ...
by spiderchee84
Sun Sep 20, 2009 7:38 pm
Forum: General
Topic: Single Appendix and Tables with a Single Label
Replies: 7
Views: 9187

Re: Single Appendix and Tables with a Single Label

Thank you, gmedina. Your help is very much appreciated.

A note for other users: the \DeclareCaptionListFormat command must be put before \begin{document}, else you'll get an error.
by spiderchee84
Sun Sep 20, 2009 2:26 pm
Forum: General
Topic: Single Appendix and Tables with a Single Label
Replies: 7
Views: 9187

Re: Single Appendix and Tables with a Single Label

Thank you for your remarks, I've updated my caption package. This explains a lot why I always encountered errors when I tried the commands in the documentation.

Is it possible to have "Table A.1" instead of "Table A.1-1" in the List of Tables?
by spiderchee84
Sat Sep 19, 2009 11:14 pm
Forum: General
Topic: Single Appendix and Tables with a Single Label
Replies: 7
Views: 9187

Single Appendix and Tables with a Single Label

I tried to use the \ContinuedFloat command. I added the following two lines:

\DeclareCaptionLabelFormat{cont}{#1˜#2-\arabic{ContinuedFloat}}
\captionsetup[ContinuedFloat]{labelformat=cont}

But I got a few errors after compilation.

The following codes are the closest to what I want, except for the ...
by spiderchee84
Sat Sep 19, 2009 7:49 pm
Forum: General
Topic: Single Appendix and Tables with a Single Label
Replies: 7
Views: 9187

Re: Single Appendix and Tables with a Single Label

I figured out the solution for the 1st question. It's rather simple actually. Just add \setcounter{secnumdepth}{-1} before we start the appendix, i.e.,

\setcounter{secnumdepth}{-1}
\chapter{Appendix}

Then everything will be fine.

This is the best I could get so far, but I believe there must be ...
by spiderchee84
Thu Sep 17, 2009 6:12 am
Forum: General
Topic: Single Appendix and Tables with a Single Label
Replies: 7
Views: 9187

Single Appendix and Tables with a Single Label

I am currently writing my thesis using the "report" document class. I encounter two probles:

(1) I have only one appendix and I want it to appear in the table of contents as "APPENDIX" (without the alphabetical numbering "A").

(2) In my appendix, I have a few tables under the same subject, which I ...
by spiderchee84
Thu Feb 19, 2009 1:31 pm
Forum: General
Topic: Some questions on table of contents
Replies: 3
Views: 2125

Re: Some questions on table of contents

Thanks for the information provided. The problem is resolved now
by spiderchee84
Sun Feb 15, 2009 12:11 am
Forum: General
Topic: Some questions on table of contents
Replies: 3
Views: 2125

Some questions on table of contents

I'm working with my thesis now and I encountered some difficulties in formatting the table of contents:

(a) How do I make the word "Contents" in the center?
(b) I want all the other entries to be left-aligned. Currently there is an indent for subsections.

Thanks.