图表下方无标题的末端浮动

图表下方无标题的末端浮动

我希望我的图表位于文档末尾,并带有单独的标题。为此,我认为该endfloat软件包可能会有用。但是,它会将标题打印在图表列表中(这是我想要的),但标题又显示在图表下方。我可以关闭图表下方的标题,但将标题保留在图表列表中吗?

我当前的endfloat配置是:\usepackage[nomarkers,figuresonly]{endfloat}

答案1

要仅获取图形列表中的标题,请使用可选参数\caption,并将其强制参数留空。

我使用该caption包来格式化标签。

\documentclass{report}
\usepackage{graphicx}
\usepackage[labelsep=none]{caption}
\usepackage[nomarkers,figuresonly]{endfloat}
\usepackage{lipsum}
\begin{document}
    
    \lipsum[1]
    \begin{figure}
        \centering
        \includegraphics[width=.3\linewidth]{example-image-a}
        \caption[short text]{}
        \label{fig:A}
    \end{figure}
    
    \lipsum[2]
    
\end{document}

相关内容