\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}