pandoc markdown 保留不同文件之间的部分编号
pandoc markdown keep section numeration among different files
是否可以保留不同文件之间的节编号?
例如,我有这个文件:
---
title: Title
number_sections: true
output: latex
graphics: yes
header-includes:
- '\usepackage{graphics}'
---
# Section 1
## SUbsection
# Section 2
输出文件 (pdf) 将具有以下编号:
1 Section 1
1.1 Subsection
2 Section 2
如果我有第二个文件:
---
title: Title
number_sections: true
output: latex
graphics: yes
header-includes:
- '\usepackage{graphics}'
---
# Section 3
输出文件 (pdf) 将具有以下编号:
1 Section 3
但我希望它像:
3 Section 3
我目前找到的唯一解决方法是重复以前文件的内容:
---
title: Title
number_sections: true
output: latex
graphics: yes
header-includes:
- '\usepackage{graphics}'
---
# Section 1
## SUbsection
# Section 2
## Another subsection
\newpage
# Section 3
The new content
它给出的 pdf 文件如下:
1 Section 1
1.1 Subsection
2 Section 2
3 Section 3
New content...
我也可以保留小节的编号。
我正在编译:
pandoc file.md -o file.pdf --pdf-engine=xelatex --number-sections --highlight-style tango
感谢任何帮助。
根据@tarleb 的建议
\setcounter{section}{3}
和
\setcounter{subsection}{3}
手动完成工作。
是否可以保留不同文件之间的节编号?
例如,我有这个文件:
---
title: Title
number_sections: true
output: latex
graphics: yes
header-includes:
- '\usepackage{graphics}'
---
# Section 1
## SUbsection
# Section 2
输出文件 (pdf) 将具有以下编号:
1 Section 1
1.1 Subsection
2 Section 2
如果我有第二个文件:
---
title: Title
number_sections: true
output: latex
graphics: yes
header-includes:
- '\usepackage{graphics}'
---
# Section 3
输出文件 (pdf) 将具有以下编号:
1 Section 3
但我希望它像:
3 Section 3
我目前找到的唯一解决方法是重复以前文件的内容:
---
title: Title
number_sections: true
output: latex
graphics: yes
header-includes:
- '\usepackage{graphics}'
---
# Section 1
## SUbsection
# Section 2
## Another subsection
\newpage
# Section 3
The new content
它给出的 pdf 文件如下:
1 Section 1
1.1 Subsection
2 Section 2
3 Section 3
New content...
我也可以保留小节的编号。
我正在编译:
pandoc file.md -o file.pdf --pdf-engine=xelatex --number-sections --highlight-style tango
感谢任何帮助。
根据@tarleb 的建议
\setcounter{section}{3}
和
\setcounter{subsection}{3}
手动完成工作。