When it comes to tables/figures, is it more common/standard/beneficial to put descriptions inside captions? I have separated descriptions from captions as follows, but I saw Use caption and long description for figure recently.
\documentclass{article}
\begin{document}
This is a sentence.
\begin{table}[h]
\caption{This is the title.}
\small The beginning description if needed.\par
{\centering\begin{tabular}{cccc} \hline
0.1234 & 0.5678 & 0.1234 & 0.5678 \\
0.1234 & 0.5678 & 0.1234 & 0.5678 \\ \hline
\end{tabular}\par}
The ending description if needed.
\end{table}
This is a sentence.
\begin{figure}[h]
\caption{This is the title.}
\small The beginning description if needed.\par
{\centering\rule{2in}{1.5in}\par}
The ending description if needed.
\end{figure}
This is a sentence.
\end{document}
As I have been studying LaTeX with no textbook, I even wonder whether the captions are in general located before/after the tables/figures. What is the best practice for writing the titles and the descriptions? Thanks.
