General ⇒ caption of the tables and figures
caption of the tables and figures
My question is: How can i put the caption of the tables and figures before the float itself??
Thanks
Carlos - Colombia
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
caption of the tables and figures
Code: Select all
\begin{figure}[!ht]
\centering
\caption{Dummy figure}\label{fig:dummy}
\rule{4cm}{3cm}
\end{figure}
\begin{table}[!ht]
\centering
\caption{Dummy table}\label{tab:dummy}
\begin{tabular}{ll}
...
\end{tabular}
\end{table}
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: caption of the tables and figures
I also believe that the captions should be below the float, but the 'Norma Técnica Colombiana' (Colombian
technical standards) doesn't see that way.
Thanks again.
Carlos - Colombia
Re: caption of the tables and figures
How do I replace a colon with a period in the table heading?
The code below produces a table heading and caption that reads:
"TABLE A: This is my caption."
I want it to read:
"TABLE A. This is my caption."
Thank you for any help.
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\renewcommand{\tablename}{TABLE}
\renewcommand{\thetable}{\Alph{table}}
\begin{document}
\begin{table*}
\caption{This is my caption.}
\centering%
\begin{tabular} {l }
\hline
\\
Name \\ \hline
\\
Arnold \\ \hline
\end{tabular}
\end{table*}
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
caption of the tables and figures
Code: Select all
\usepackage[font=small,labelfont=bf,labelsep=period]{caption}
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10