No se puede editar la respuesta de LucasSeveryn, se le dijo que la cola estaba llena, así que agregue información aquí
forma 1: + raw_tex
\newpage
y \pagebreak
necesita raw_tex
extensión.
// con pandoc 2.9.2.1, no funciona con salida docx o html, --verbose dice
[INFO] Not rendering RawBlock (Format "tex") "\\pagebreak"
[INFO] Not rendering RawBlock (Format "tex") "\\newpage"
forma 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>
```
// tampoco es compatible con el formato de entrada gfm.
// esto funcionó para la salida docx, no funciona con la salida html.
extensión AVISO
esta necesidad de +raw_tex
extensión de formato. que no es compatible con todas las variantes de rebajas en 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.
también -f markdown
funcionará, pero -f gfm
no funcionará.
extensión de formato
https://pandoc.org/MANUAL.html#option--from
Extensions can be individually enabled or disabled by appending
+EXTENSION or -EXTENSION to the format name.
por ejemplo
-t html+raw_tex
: salida habilitar raw_tex
-f markdown-raw_tex-raw_attribute
: entrada deshabilitar raw_tex y raw_attribute