标题仅在目录中,不显示在正文中

标题仅在目录中,不显示在正文中

我有一组全页图像。我希望这些图像显示在目录中,但由于它们是全页的,我不希望在文本中在它们周围显示任何标题。

我的代码大致如下:

\documentclass[11pt,a4paper,titlepage]{memoir}
\usepackage[OT1]{fontenc}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[font={footnotesize}]{caption}  %%%%%
\usepackage[font={footnotesize}]{subcaption} %%%%
\usepackage{changepage} %%%%
\usepackage{soul}
\usepackage{tikz}
\usepackage{tikzpagenodes}

\begin{document}

\frontmatter

\cleartorecto
\tableofcontents
\newpage
\listoffigures
\mainmatter

\begin{tikzpicture}[remember picture,overlay,shift={(current page.south west)}]
\node[anchor=south west] (0,0) {\includegraphics[width=\paperwidth,height=\paperheight]{MyFigure}};
\end{tikzpicture}
\thispagestyle{empty}
\begin{figure}
\caption*[{Sometext to be shown in the list of figures}]{ }
\end{figure}

\end{document}

现在,我知道如果我的图片是全页的,我将看不到下面的标题。然而,有没有办法正确地省略标题并让它只出现在目录中?

答案1

您正在使用的字幕包提供

\captionlistentry[figure]
  {Sometext to be shown in the list of figures}

相关内容