我有一个包含一些变量名的图形。目前,我使用 floatrow 中的 floatfoot 来添加变量名的解释,我非常喜欢它的外观,但它存在多个问题。
这里是代码:
\documentclass[a4paper,12pt]{article}
\usepackage{floatrow}
\usepackage{graphicx}
\usepackage{subcaption}
\begin{document}
\begin{figure}[h]
\centering
\includegraphics[width=0.5\textwidth]{x-ray-tube}
\floatfoot{
\begin{center}
$U_h$ heating potential, $U_a$ acceleration potential, $K$ cathode, $A$ anode,\\
$W_{in}$ cooling water inlet, $W_{out}$ cooling water outlet, $C$ cooler
\end{center}}
\caption{Schematic x-ray tube.\\
Source: \textit{Citation Source here}}
\label{fig:x-ray-tube}
\end{figure}
\end{document}
每当我添加 \centering 或如示例中的 begin center 时,它都会引发错误(除了工作正常?)。
我希望在图形和其标题之间有一个浮点数,因为它是图形的一部分。
目前情况是:
(Image)
Fig 1: Caption
Floating infos
我希望它是:
(Image)
Floating infos
Fig 1: Caption
- 我想稍微减少一点间距,目前它看起来非常笨重。
LaTeX 错误:出现问题 - 也许缺少 \item。
答案1
所以你想要这样的东西吗?
那么你就把事情复杂化了,干脆放弃它\floatfoot
吧。
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\usepackage{subcaption}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=0.5\textwidth]{example-image}
\footnotesize
$U_h$ heating potential, $U_a$ acceleration potential, $K$ cathode, $A$ anode,\\
$W_{in}$ cooling water inlet, $W_{out}$ cooling water outlet, $C$ cooler
\caption{Schematic x-ray tube.\\
Source: \textit{Citation Source here}}
\label{fig:x-ray-tube}
\end{figure}
\end{document}