Hello,
I am trying to write my thesis and the format for tables requires the tables be listed in a list of tables, which I have. I am not sure however how to change the format of the tables.
The format required by the school is that the table number is on a different line than the caption and then the table. I have tried things like \newline in the caption which creates a break in the caption, and there is still the : in the table number.
I am afraid I dont know much about LaTeX, I am using a template. I dont know if there is a package that I can use that would change the table/tabular style or what. Any help would be appreciated.
Graphics, Figures & Tables ⇒ Table Formatting/Style Question
NEW: TikZ book now 40% off at Amazon.com for a short time.

Table Formatting/Style Question
Take a look at the caption package. I think you want to add the following to your preamble:
Haven't tested it though.
Code: Select all
\usepackage{caption}
\DeclareCaptionLabelSeparator*{newline}{\\}
howtoTeX.com - Your LaTeX resource site (Tips, Tricks, Templates and more!)
Follow howtoTeX on twitter
Follow howtoTeX on twitter
Table Formatting/Style Question
Code: Select all
\usepackage[labelsep=newline,singlelinecheck=false]{caption}
Re: Table Formatting/Style Question
Thank you. That was what I was looking for.
Is it possible to use two different caption styles in a document. My document type is a report. Tables are suppose to have centered captions which I figured out how to do, but Figures are suppose to have justified captions and the style changes them both.
Is it possible to use two different caption styles in a document. My document type is a report. Tables are suppose to have centered captions which I figured out how to do, but Figures are suppose to have justified captions and the style changes them both.
Table Formatting/Style Question
Yes, this is possible, one can specify options which take effect inside a specific floating environment only (for example "figure" or "table"), e.g.:jggalbra wrote:Is it possible to use two different caption styles in a document.
Code: Select all
\captionsetup[figure]{...}