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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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]{...}