LucasSveryvery के उत्तर को संपादित नहीं किया जा सकता है, कतार को पूर्ण बताया गया है, इसलिए यहां कुछ जानकारी जोड़ें।
रास्ता 1: + रॉ_टेक्स
\newpage
और विस्तार की \pagebreak
आवश्यकता raw_tex
है।
// pandoc 2.9.2.1 के साथ, डॉक्स या 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
प्रारूप विस्तार की जरूरत है । जो पैंडॉक में सभी मार्कडाउन वेरिएंट के लिए समर्थन नहीं करता है।
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
: आउटपुट राव_टेक्स को सक्षम करता है
-f markdown-raw_tex-raw_attribute
: इनपुट रॉ_टेक्स्ट और रॉ_टैब को निष्क्रिय करें