横向表格附录标题不横向

横向表格附录标题不横向

我在附录中加入了一张表格(表格的图形)。我希望它横向显示,并且可以翻转它。问题是附录标题“附录 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

相关内容