我有一個 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
uj5u.com熱心網友回復:
快速破解:
---
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 AN
轉載請註明出處,本文鏈接:https://www.uj5u.com/qukuanlian/378698.html
上一篇:R-多重插補前的部分平均插補
下一篇:R-根據跨幾列的值范圍過濾行
