横向きの表の付録ヘッダーが横向きではない

横向きの表の付録ヘッダーが横向きではない

付録に表 (表のグラフィック) を含めました。横向きにしたいのですが、反転できます。問題は、付録のヘッダー「付録 B ...」が横向きに反転せず、反転した表の前の別のページに表示されることです。

私は次のコードを使います:

\documentclass{article}
\emergencystretch 3em
\usepackage{packages}
\usepackage{appendix}
\newcommand{\addappendix}{   % Self-created command to insert appendix with predefined settings
    \newpage
    \appendix
    \section*{Appendix}   % Name of appendix
    \addcontentsline{toc}{section}{Appendix}  % Add appendix name to table of contents
    \renewcommand{\thesubsection}{\Alph{subsection}}    % Change numbering of section to upper-case letters

\begin{document}

\section{Bergsikringsklasser og sikringsmengder i tunnel} 

\begin{landscape}
\begin{figure}[H]
    \centering
    \captionof{table}[Caption]{Caption}
    \includegraphics[scale=0.4]{Images/N-V521/bergsikringsklasser_tunnel.png}
    \label{tab:vedlegg_bergsikringsklasser_tunnel}
\end{figure}
\end{landscape}

\end{document}

付録のタイトル

付録自体

答え1

この質問をしてからわずか 2 分後に、私は自分の質問に対する答えを見つけました。

私は\begin{landscape}上に移動しました\section

関連情報