附录中的 head 没有出现 3 个数字(子浮点数)

附录中的 head 没有出现 3 个数字(子浮点数)

我为我的论文做了一些附录。但是标题有些问题。有 3 个图,每个图占一页(整页)。第一页一切正常。第二页也正常,但第三页没有出现标题。这是什么问题?

\documentclass[12pt,twoside,a4paper,openright]{report}
\usepackage[portuguese]{babel}
\usepackage[utf8]{inputenc}
\usepackage[inner=3cm,outer=2cm,tmargin=2.0cm,bmargin=2.0cm, includefoot, includehead]{geometry}
\usepackage{fancyhdr}
\usepackage{graphicx}
\graphicspath{  {fig/} }
\usepackage{epstopdf}
\usepackage{subfig}

\usepackage[titletoc]{appendix}
\renewcommand\chaptername{Anexo}
\addto\captionsportuguese{%
  \renewcommand\appendixname{Anexo}
  \renewcommand\appendixpagename{Anexos}
}

\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyfoot[RO,LE]{\thepage}
\fancyhead[RO]{\slshape \rightmark}
\fancyhead[LE]{\slshape \leftmark}


\begin{document}

\appendixpage
\begin{appendices}



\chapter{Imagens SEM}

Imagens SEM de carbonato de cálcio natural, original e modificado, com uma resolução de 7500x e 20000x.

\begin{figure}[htb]
\centering
  \subfloat[H60-7500x]{%
    \includegraphics[width=.45\textwidth]{H60_7500X}}\hfill
  \subfloat[H60 Modificado - 7500x]{%
    \includegraphics[width=.45\textwidth]{H60-M2_7500X}}\\
  \subfloat[H60-20000x]{%
    \includegraphics[width=.45\textwidth]{H60_20000X}}\hfill
  \subfloat[H60 Modificado - 20000x]{%
    \includegraphics[width=.45\textwidth]{H60-M2_20000x-_2}}\\
  \caption{This is lot of figures arranged side by side in matrix form with captions for each and a main caption}\label{fig:1}
\end{figure}



\begin{figure}[htb]
\centering
  \subfloat[H90-7500x]{%
    \includegraphics[width=.45\textwidth]{H90_7500X_2}}\hfill
  \subfloat[H90 Modificado - 7500x]{%
    \includegraphics[width=.45\textwidth]{H90-M2_-_7500x_-_2}}\\
  \subfloat[H90-20000x]{%
    \includegraphics[width=.45\textwidth]{H90_2000X_2}}\hfill
  \subfloat[H90 Modificado - 20000x]{%
    \includegraphics[width=.45\textwidth]{H90-M2-20000x}}\\
  \caption{This is lot of figures arranged side by side in matrix form with captions for each and a main caption}\label{fig:1}
\end{figure}

\begin{figure}[htb]
\centering
  \subfloat[H60-7500x]{%
    \includegraphics[width=.45\textwidth]{H90_E7500X_2}}\hfill
  \subfloat[H60 Modificado - 7500x]{%
    \includegraphics[width=.45\textwidth]{H90E-M2_-_7500x}}\\
  \subfloat[H60-20000x]{%
    \includegraphics[width=.45\textwidth]{H90_E_20000X}}\hfill
  \subfloat[H60 Modificado - 20000x]{%
    \includegraphics[width=.45\textwidth]{H90E-M2_-_20000x-2}}\\
  \caption{This is lot of figures arranged side by side in matrix form with captions for each and a main caption}\label{fig:1}
\end{figure}

\end{appendices}
\end{document}

答案1

在右侧页面中,标题显示部分名称,该部分名称为空。

appendices您可以使用以下方式更改环境内的行为

\appendixpage
\begin{appendices}
\fancyhead[RO]{\slshape \leftmark}

相关内容