Graphics, Figures & Tables ⇒ Table Formatting/Style Question
Table Formatting/Style Question
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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Table Formatting/Style Question
Code: Select all
\usepackage{caption}
\DeclareCaptionLabelSeparator*{newline}{\\}Follow howtoTeX on twitter
Table Formatting/Style Question
Code: Select all
\usepackage[labelsep=newline,singlelinecheck=false]{caption}Re: Table Formatting/Style Question
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]{...}