图形和实际标题之间的子标题

图形和实际标题之间的子标题

我有一个包含一些变量名的图形。目前,我使用 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}
  1. 每当我添加 \centering 或如示例中的 begin center 时,它都会引发错误(除了工作正常?)。

  2. 我希望在图形和其标题之间有一个浮点数,因为它是图形的一部分。

目前情况是:

(Image)
Fig 1: Caption

Floating infos

我希望它是:

(Image)
Floating infos    
Fig 1: Caption
  1. 我想稍微减少一点间距,目前它看起来非常笨重。

LaTeX 错误:出现问题 - 也许缺少 \item。

如果你想测试一下,这里是图片。图片(来自维基百科):x 射线管

答案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}

相关内容