附录格式/按引用显示的文本

附录格式/按引用显示的文本

我想要获得如 MWE 所示的目录和文本格式。

 \documentclass[12pt,a4paper]{article}
 \usepackage[a4paper]{geometry}
 \usepackage{polyglossia}
 \setdefaultlanguage{polish}
 \usepackage[titles]{tocloft}

 \makeatletter
    \renewcommand{\numberline}[1]{%
    \@cftbsnum #1\@cftasnum~\@cftasnumb%
 }

\begin{document}

\newpage
\tableofcontents

\newpage
\section{Section 1}
bla bla \ref{app2} bla.

\subsection{Subsection 1}
\newpage

\appendix
    \addcontentsline{toc}{section}{Appendices}

    \section*{Appendices}
    \renewcommand{\thesubsection}{Appendix \Alph{subsection}.}
    \renewcommand{\theparagraph}{\Alph{subsection}}

    \subsection{Description.}
    \label{app1}

    \subsection{Description.}
    \label{app2}

\end{document}

但在第 1 节中,我不想得到“bla bla 附录 B. bla。”,而是:“bla bla B bla。”(在波兰语中,由于偏斜,我不能在文本中使用标题“附录 B”。)

因此,为了解决我的问题,我可以找到方法:

  1. 从附录中获取仅数字。

  2. 创建标题“附录 X. 说明。”而不使用:

 \renewcommand{\thesubsection}{Appendix \Alph{subsection}.}

这两种方法我都失败了。

相关内容