From 29a2e08c7407e1611c2e2eb168bf0f712a83ed8b Mon Sep 17 00:00:00 2001 From: tiyn Date: Sat, 26 Apr 2025 00:57:18 +0200 Subject: [PATCH] pandoc: added entry --- wiki/pandoc.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 wiki/pandoc.md diff --git a/wiki/pandoc.md b/wiki/pandoc.md new file mode 100644 index 0000000..cbaddca --- /dev/null +++ b/wiki/pandoc.md @@ -0,0 +1,17 @@ +# Pandoc + +[Pandoc](https://pandoc.org/) is a free-software parser for documents that is able to convert +various document formats between each other. + +## Usage + +This section focusses on the usage of Pandoc. + +### Converting MS Word to LaTeX + +By using the following command a proprietary Microsoft Word document (named `input.docx` in this +example) can be converted to a file in LaTeX-Format (in this example named `output.tex`). + +```sh +pandoc input.docx -o output.tex +```