带星号章节内的图,带字母编号

带星号章节内的图,带字母编号

我正在使用 LaTeX 写一本书,有五个主要章节。我需要添加按字母顺序排列的其他带星号的章节,例如(附件 A、附件 B...),这样我就可以向这些章节添加带有以下标题的图表:

图 A-1:这是标题

但是当我在带星号的章节后添加图片时,它总是采用第五个章节编号,也就是五。我该如何解决这个问题?

编辑:这是示例代码:

    \documentclass[parskip=full,12pt,a4paper,twoside,frenchb,openany,fleqn]{book}
\usepackage{graphicx}
\begin{document}
\listoffigures
\chapter{chapter 1}
\begin{figure}
  \centering
  \includegraphics[width=1\textwidth]{images/figure5-20.jpg}
  \caption{caption 1 }
\end{figure}
\chapter*{annexe A}
\begin{figure}
  \centering
  \includegraphics{images/figure5-20.jpg}
  \caption{caption 2}
\end{figure}

\end{document}

我想要获得图 1-1:标题 1 和图 A-1:标题 2。

答案1

这是一个简单的方法。(我假设因为你想要“附件”,所以你的文档是法语的。

\documentclass[parskip=full,12pt,a4paper,twoside,frenchb,openany,fleqn]{book}
\usepackage[demo]{graphicx} % remove [demo] for real images
\usepackage[T1]{fontenc}
\usepackage[francais]{babel}
\renewcommand{\thefigure}{\thechapter-\arabic{figure}}
\begin{document}
\listoffigures
\chapter{}
\begin{figure}
  \centering
  \includegraphics[width=1\textwidth]{images/figure5-20.jpg}
  \caption{caption 1 }
\end{figure}
\appendix
\chapter{}
\begin{figure}
  \centering
  \includegraphics{images/figure5-20.jpg}
  \caption{caption 2}
\end{figure}

\end{document}

相关内容