summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-04-27 20:37:52 +0000
committerKarl Berry <karl@freefriends.org>2023-04-27 20:37:52 +0000
commitfd9564b21054e27d1e4f4bfcca7683ae3b84e2fb (patch)
treef98ea8c61cbdc8546aabe2957323aca8776c3bca /Master/texmf-dist/doc/latex
parenteaf38b0e316452820428aaa331b98c6b2c9d8edf (diff)
markdown (27apr23)
git-svn-id: svn://tug.org/texlive/trunk@66954 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-rw-r--r--Master/texmf-dist/doc/latex/markdown/examples/latex-luatex.tex56
-rw-r--r--Master/texmf-dist/doc/latex/markdown/examples/latex-pdftex.tex (renamed from Master/texmf-dist/doc/latex/markdown/examples/latex.tex)22
-rw-r--r--Master/texmf-dist/doc/latex/markdown/examples/latex-tex4ht.tex76
-rw-r--r--Master/texmf-dist/doc/latex/markdown/examples/latex-xetex.tex56
4 files changed, 195 insertions, 15 deletions
diff --git a/Master/texmf-dist/doc/latex/markdown/examples/latex-luatex.tex b/Master/texmf-dist/doc/latex/markdown/examples/latex-luatex.tex
new file mode 100644
index 00000000000..18b16bf7769
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/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}
diff --git a/Master/texmf-dist/doc/latex/markdown/examples/latex.tex b/Master/texmf-dist/doc/latex/markdown/examples/latex-pdftex.tex
index 44736c61dc2..db6cbea8c80 100644
--- a/Master/texmf-dist/doc/latex/markdown/examples/latex.tex
+++ b/Master/texmf-dist/doc/latex/markdown/examples/latex-pdftex.tex
@@ -1,20 +1,10 @@
\documentclass{book}
-\usepackage{ifxetex,ifluatex}
-\ifxetex
- \usepackage{polyglossia}
- \setmainlanguage{english}
- \usepackage{fontspec}
-\else\ifluatex
- \usepackage{polyglossia}
- \setmainlanguage{english}
- \usepackage{fontspec}
-\else
- \usepackage[english]{babel}
- \usepackage[utf8]{inputenc}
- \usepackage[T1]{fontenc}
- \usepackage{lmodern}
-\fi\fi
+\usepackage[english]{babel}
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage{lmodern}
\usepackage{booktabs}
+% Load the Markdown package and set its options.
\usepackage[
contentBlocks,
debugExtensions,
@@ -38,6 +28,7 @@
texMathDoubleBackslash,
texMathSingleBackslash,
]{markdown}
+% Set the document metadata using a YAML metadata block.
\begin{markdown*}{hybrid}
---
title: An Example *Markdown* Document
@@ -59,6 +50,7 @@ date: \today
\catcode`\%=14\relax
\catcode`\#=6\relax
+% Typeset some further examples with inline markdown text.
\begin{markdown}
Here are some non-ASCII characters: *ěščřžýáíé*.
\end{markdown}
diff --git a/Master/texmf-dist/doc/latex/markdown/examples/latex-tex4ht.tex b/Master/texmf-dist/doc/latex/markdown/examples/latex-tex4ht.tex
new file mode 100644
index 00000000000..db6cbea8c80
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/markdown/examples/latex-tex4ht.tex
@@ -0,0 +1,76 @@
+\documentclass{book}
+\usepackage[english]{babel}
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage{lmodern}
+\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}
+
+\begin{markdown*}{html, hybrid}
+Here is some <b>HTML code</b> mixed *with Markdown*. In \TeX, the HTML code
+will be silently ignored, whereas in \TeX 4ht, the HTML code will be passed
+through to the output:
+
+<table border="1">
+ <tr>
+ <td>Emil</td>
+ <td>Tobias</td>
+ <td>Linus</td>
+ </tr>
+ <tr>
+ <td>16</td>
+ <td>14</td>
+ <td>10</td>
+ </tr>
+</table>
+\end{markdown*}
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/markdown/examples/latex-xetex.tex b/Master/texmf-dist/doc/latex/markdown/examples/latex-xetex.tex
new file mode 100644
index 00000000000..18b16bf7769
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/markdown/examples/latex-xetex.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}