non è possibile modificare la risposta di LucasSeveryn, ha detto che la coda è piena, quindi aggiungi alcune informazioni qui.
modo 1: + raw_tex
\newpage
e \pagebreak
necessitano di raw_tex
estensione.
// con pandoc 2.9.2.1, non funziona con l'output docx o html, dice --verbose
[INFO] Not rendering RawBlock (Format "tex") "\\pagebreak"
[INFO] Not rendering RawBlock (Format "tex") "\\newpage"
modo 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>
```
// inoltre non è supportato nel formato di input gfm.
// questo ha funzionato per l'output docx, non funziona con l'output html.
estensione AVVISO
questo richiede l' +raw_tex
estensione del formato. che non è supportato per tutte le varianti di ribasso in 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.
così -f markdown
funzionerà, ma -f gfm
non funzionerà.
estensione del formato
https://pandoc.org/MANUAL.html#option--from
Extensions can be individually enabled or disabled by appending
+EXTENSION or -EXTENSION to the format name.
per esempio
-t html+raw_tex
: abilita output raw_tex
-f markdown-raw_tex-raw_attribute
: input disabilita raw_tex e raw_attribute