Latex 不同附录部分标签

Latex 不同附录部分标签
\documentclass[12pt]{report}
\usepackage[margin=1.5cm, noheadfoot]{geometry}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[magyar]{babel}

\usepackage{graphicx}
\usepackage{float}


\begin{document}

\counterwithout{figure}{chapter}

\tableofcontents\vfill

\chapter{First}
\section{First section}
\begin{figure}[H]
    \centering
    \includegraphics{example-image}
    \caption{Caption}
    \label{fig:ex}
\end{figure}

\clearpage
\pagenumbering{roman}
\renewcommand\thefigure{F.\arabic{figure}}    
\setcounter{figure}{0}
\appendix
\chapter*{Függelék}
\refstepcounter{chapter}
\addcontentsline{toc}{chapter}{Függelék}
\section{First section in Ap}
\begin{figure}[H]
    \centering
    \includegraphics{example-image}
    \caption{Caption}
    \label{fig:ap-ex}
\end{figure}
\section{Second section in Ap}


\end{document}

在此处输入图片描述 在此处输入图片描述

正如您在附录中看到的(Függelék 在我的母语中是附录的意思),我的附录部分标签是A.1.A.2.,我怎样才能将字母更改A为字母F?因此附录部分标签应为F.1.F.2.

标签toc也应该改变。

我只有一个附录章节。

答案1

我建议你插入指令

\renewcommand\thesection{F.\arabic{section}}

紧接\section在该\appendix指令之后的第一个指令之前。


在此处输入图片描述


在此处输入图片描述


\documentclass[12pt]{report}
\usepackage[margin=1.5cm, noheadfoot]{geometry}

%%\usepackage[utf8]{inputenc} %  that's the default nowadays
\usepackage[T1]{fontenc}
\usepackage[magyar]{babel}

\usepackage{graphicx}
%%\usepackage{float}

\counterwithout{figure}{chapter}


\begin{document}

\tableofcontents%\vfill % \vfill isn't needed

\listoffigures

\chapter{First chapter}
\section{First section in chapter 1}

\begin{figure}[h]
    \centering
    \includegraphics{example-image}
    \caption{Caption}
    \label{fig:ex}
\end{figure}

\clearpage
\pagenumbering{roman}
\renewcommand\thefigure{F.\arabic{figure}}    
\setcounter{figure}{0}
\appendix
\chapter*{Függelék}
\refstepcounter{chapter}

\addcontentsline{toc}{chapter}{Függelék}
\renewcommand\thesection{F.\arabic{section}} % <-- new

\section{First section in Appendix}

\begin{figure}[h]
    \centering
    \includegraphics{example-image}
    \caption{Caption text}
    \label{fig:ap-ex}
\end{figure}

\section{Second section in Apppendix}

\end{document}

相关内容