không thể chỉnh sửa câu trả lời của LucasSeveryn, đã cho hàng đợi đầy, vì vậy hãy thêm một số thông tin vào đây.
cách 1: + raw_tex
\newpage
và \pagebreak
cần bật raw_tex
phần mở rộng.
// với pandoc 2.9.2.1, không hoạt động với đầu ra docx hoặc html, --verbose nói
[INFO] Not rendering RawBlock (Format "tex") "\\pagebreak"
[INFO] Not rendering RawBlock (Format "tex") "\\newpage"
cách 2: + raw_attribute
https://pandoc.org/MANUAL.html#extension-raw_attribute
```{=openxml}
<w:p>
<w:r>
<w:br w:type="page"/>
</w:r>
</w:p>
```
// cũng không hỗ trợ ở định dạng đầu vào gfm.
// điều này hoạt động với đầu ra docx, không hoạt động với đầu ra html.
phần mở rộng THÔNG BÁO
cần +raw_tex
định dạng mở rộng này. không hỗ trợ cho tất cả các biến thể đánh dấu trong pandoc.
https://pandoc.org/MANUAL.html#markdown-variants
Note, however, that commonmark and gfm have limited support for extensions.
Only those listed below (and smart, raw_tex, and hard_line_breaks) will work.
The extensions can, however, all be individually disabled.
Also, raw_tex only affects gfm output, not input.
như vậy -f markdown
sẽ hoạt động, nhưng -f gfm
không hoạt động.
phần mở rộng định dạng
https://pandoc.org/MANUAL.html#option--from
Extensions can be individually enabled or disabled by appending
+EXTENSION or -EXTENSION to the format name.
ví dụ
-t html+raw_tex
: đầu ra cho phép raw_tex
-f markdown-raw_tex-raw_attribute
: vô hiệu hóa đầu vào raw_tex và raw_attribute