ไม่สามารถแก้ไขคำตอบของ LucasSeveryn ได้บอกว่าคิวเต็มดังนั้นโปรดเพิ่มข้อมูลที่นี่
วิธีที่ 1: + raw_tex
\newpage
และ\pagebreak
ต้องการraw_tex
ขยาย
// ด้วย pandoc 2.9.2.1 ไม่ทำงานกับเอาต์พุต docx หรือ html --verbose กล่าว
[INFO] Not rendering RawBlock (Format "tex") "\\pagebreak"
[INFO] Not rendering RawBlock (Format "tex") "\\newpage"
วิธีที่ 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>
```
// ยังไม่รองรับในรูปแบบอินพุต gfm
// สิ่งนี้ใช้ได้กับเอาต์พุต docx ไม่ทำงานกับเอาต์พุต html
ประกาศเกี่ยวกับการขยาย
นี้จำเป็นที่จะต้อง+raw_tex
ขยายรูปแบบ ซึ่งไม่รองรับตัวแปร markdown ทั้งหมดใน 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.
เพื่อ-f markdown
จะทำงาน แต่-f gfm
ไม่ได้ทำงาน
นามสกุลรูปแบบ
https://pandoc.org/MANUAL.html#option--from
Extensions can be individually enabled or disabled by appending
+EXTENSION or -EXTENSION to the format name.
ตัวอย่างเช่น
-t html+raw_tex
: เอาต์พุตเปิดใช้งาน raw_tex
-f markdown-raw_tex-raw_attribute
: input ปิดใช้งาน raw_tex และ raw_attribute