我有一个PDF标记文件。在论文的末尾,我有一个附录。我想重新开始计算附录中的一节,并可能在附录的前面加上一个"A“。比如"A1","A2","A3“等等。
有人知道怎么做吗?
非常感谢你的帮助
下面是一个例子。
---
title: "My paper with an appendix"
output:
pdf_document:
number_sections: yes
---
# my normally numbered section
text
## another normally numbered section
text
\newpage
# Appendix {-}
this section should not be numbered
## This is a new section that I would like to be numbered "A1"
text
## Every other section should be numbered "A..."
starting from A1 to AN发布于 2021-12-09 16:19:01
快速黑客:
---
title: "My paper with an appendix"
output:
pdf_document:
number_sections: yes
---
# my normally numbered section
text
## another normally numbered section
text
\newpage
\appendix
\renewcommand{\thesection}{A}
# Appendix {-}
this section should not be numbered
## This is a new section that I would like to be numbered "A1"
text
## Every other section should be numbered "A..."
starting from A1 to ANhttps://stackoverflow.com/questions/70292874
复制相似问题