我的表格名称和标题采用“经典” LaTeX 格式,例如“表格 1:标题文本”,但我想使其像
**Table 1**
Caption Text
有什么方法可以实现这个目的吗?
答案1
假设
**Table 1**
你的意思是大胆的标签及其编号,即获取表格1,使用该caption
包将让您实现格式化目标。
例如,
\documentclass{article}
\usepackage{caption}
\captionsetup[table]{labelfont=bf,
labelsep=newline,
skip=0.333\baselineskip}
\begin{document}
\begin{table}
\centering
\caption{Caption Text}
\begin{tabular}{|cc|}
\hline
a & b \\ c & d \\
\hline
\end{tabular}
\end{table}
\end{document}