summaryrefslogtreecommitdiff
path: root/macros/generic/markdown/examples/latex-luatex.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/generic/markdown/examples/latex-luatex.tex')
-rw-r--r--macros/generic/markdown/examples/latex-luatex.tex56
1 files changed, 56 insertions, 0 deletions
diff --git a/macros/generic/markdown/examples/latex-luatex.tex b/macros/generic/markdown/examples/latex-luatex.tex
new file mode 100644
index 0000000000..18b16bf776
--- /dev/null
+++ b/macros/generic/markdown/examples/latex-luatex.tex
@@ -0,0 +1,56 @@
+\documentclass{book}
+\usepackage{polyglossia}
+\setmainlanguage{english}
+\usepackage{fontspec}
+\usepackage{booktabs}
+% Load the Markdown package and set its options.
+\usepackage[
+ contentBlocks,
+ debugExtensions,
+ definitionLists,
+ fancy_lists,
+ fencedCode,
+ hashEnumerators,
+ inlineNotes,
+ jekyllData,
+ lineBlocks,
+ notes,
+ pipeTables,
+ rawAttribute,
+ smartEllipses,
+ strikeThrough,
+ subscripts,
+ superscripts,
+ tableCaptions,
+ taskLists,
+ texMathDollars,
+ texMathDoubleBackslash,
+ texMathSingleBackslash,
+]{markdown}
+% Set the document metadata using a YAML metadata block.
+\begin{markdown*}{hybrid}
+---
+title: An Example *Markdown* Document
+author: Vít Novotný
+date: \today
+---
+\end{markdown*}
+\begin{document}
+% Typeset the document `example.md` by letting the Markdown package handle
+% the conversion internally.
+\markdownInput{./example.md}
+
+% Typeset the document `example.tex` that we prepared separately using the
+% Lua command-line interface of the Markdown package and that contains a
+% plain TeX representation of the document `example.md`.
+\catcode`\%=12\relax
+\catcode`\#=12\relax
+\InputIfFileExists{./example.tex}{}{}
+\catcode`\%=14\relax
+\catcode`\#=6\relax
+
+% Typeset some further examples with inline markdown text.
+\begin{markdown}
+Here are some non-ASCII characters: *ěščřžýáíé*.
+\end{markdown}
+\end{document}