Graphics, Figures & Tables ⇒ Captions: Tab. >> Table & Fig. >> Figure
-
- Posts: 13
- Joined: Tue Dec 07, 2010 5:25 pm
Captions: Tab. >> Table & Fig. >> Figure
Hi All,
My table and figure captions start with "Tab. x.x" and "Fig. x.x" but I'd like them to read "Table x.x" and "Figure x.x" instead.
Thanks for the help.
Chris
My table and figure captions start with "Tab. x.x" and "Fig. x.x" but I'd like them to read "Table x.x" and "Figure x.x" instead.
Thanks for the help.
Chris
Last edited by ChrisDanger on Wed Dec 08, 2010 11:38 am, edited 3 times in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Captions: Tab. >> Table & Fig. >> Figure
Somehow I can't comprehend the problem.
Best regards and welcome to the board
Thorsten
Code: Select all
Code, edit and compile here:
\documentclass[11pt,a4paper]{article}\usepackage[T1]{fontenc}\usepackage[utf8]{inputenc}\begin{document}\begin{figure}[!ht]\centering\rule{6.4cm}{3.6cm}\caption{Dummy figure}\label{fig:dummy}\end{figure}\begin{table}[!ht]\centering\rule{6.4cm}{3.6cm}\caption{Dummy table}\label{tab:dummy}\end{table}\end{document}
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 13
- Joined: Tue Dec 07, 2010 5:25 pm
Captions: Tab. >> Table & Fig. >> Figure
I'm using the documentclass "thesis" that came with MiKTeX 2.7, which seems to change the default behaviour of the caption environment to have abbreviated titles.
Apologies for the lack of clarity, and thanks for the welcome.
Code: Select all
Code, edit and compile here:
\documentclass[12pt, oneside, a4paper]{thesis}\usepackage[T1]{fontenc}\usepackage[utf8]{inputenc}\begin{document}\begin{figure}[!ht]\centering\rule{6.4cm}{3.6cm}\caption{Dummy figure}\label{fig:dummy}\end{figure}\begin{table}[!ht]\centering\rule{6.4cm}{3.6cm}\caption{Dummy table}\label{tab:dummy}\end{table}\end{document}
Captions: Tab. >> Table & Fig. >> Figure
If it's the one located here, then it should work to put this in the preamble:
I did notice though that this class is quite old, and no longer distributed with TeXlive. I wonder if it's the best choice....
Code: Select all
Code, edit and compile here:
\renewcommand{\figureshortname}{Figure}\renewcommand{\tableshortname}{Table}
-
- Posts: 13
- Joined: Tue Dec 07, 2010 5:25 pm
Captions: Tab. >> Table & Fig. >> Figure
Thanks for that. It worked like a charm.
Thanks again,
Chris
Is there a class that you would recommend as a better choice? I'm writing a masters dissertation for an engineering degree.frabjous wrote:I did notice though that this class is quite old, and no longer distributed with TeXlive. I wonder if it's the best choice....
Thanks again,
Chris
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Captions: Tab. >> Table & Fig. >> Figure
The document class is not so important if you are not strictly bounded to formatting demands. Modern document classes like those from KOMA Script or the memoir class help a lot to format your document mainly regarding the typography. A package that does the layout especially for a thesis is the classicthesis package.ChrisDanger wrote:[…] Is there a class that you would recommend as a better choice? I'm writing a masters dissertation for an engineering degree. […]
For the content of a document with engineering stuff there are several packages which help you in formatting equations or physical units, creating and including graphics and diagrams or setting up and filling the bibliography. But in this regard you should ask specific questions within another topic when the time has come.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 13
- Joined: Tue Dec 07, 2010 5:25 pm
Re: Captions: Tab. >> Table & Fig. >> Figure
Cool. Thanks for the suggestions.