21 lines
221 B
Markdown
21 lines
221 B
Markdown
|
```
|
||
|
pandoc -t latex
|
||
|
---
|
||
|
header-includes:
|
||
|
- \newcommand{\blandscape}{\begin{landscape}}
|
||
|
- \newcommand{\elandscape}{\end{landscape}}
|
||
|
...
|
||
|
|
||
|
\blandscape
|
||
|
|
||
|
testing
|
||
|
|
||
|
\elandscape
|
||
|
^D
|
||
|
\begin{landscape}
|
||
|
|
||
|
testing
|
||
|
|
||
|
\end{landscape}
|
||
|
```
|