Skip to main content

All Questions

0 votes
1 answer
551 views

I'm trying to convert a normal Markdown document to a PDF using pandoc. I'm getting LaTeX errors

Here is the entire markdown: --- title: Calculus hw author: Jewel date: April 21, 2023 --- > Question 1 $$ f(x) = \begin{cases} Asin(x)+Bcos(x) & \text{if } x < 0 \\ x^2+1 & \text{if } ...
Jewel Paresh Limbochiya's user avatar
0 votes
1 answer
501 views

How to create a minimalist HTML5 file from Markdown?

I have a simple Markdown file which I want to convert to a minimal HTML5 compliant file. I tried: pandoc -f markdown -t html5 .\description.md -o description.html → this generates proper HTML content,...
WoJ's user avatar
  • 3,263
1 vote
0 answers
1k views

Convert *.md file to *.docx by right click using Pandoc

I would like to be able to easily generate *.docx files from *.md ones by just right-clicking on the file and selecting "Convert to docx". I used to do this manually by using Pandoc in the Windows ...
yolegu's user avatar
  • 21
1 vote
1 answer
2k views

Pandoc not converting Markdown list to LaTeX properly

I cannot seem to get Pandoc to convert my Markdown documents to PDF (via LaTeX) properly. The problem seems to come from how I am formatting my lists. If I use the following command pandoc -i test.md -...
brandonaut's user avatar
3 votes
1 answer
1k views

Pandoc options to convert LaTeX flavored Markdown to HTML

The aim is to convert a Markdown file (file.md) to a html file (file.html). The Markdown file contains formulas specified in LaTeX specified between two dollar ($) signs. Example: The resulting ...
willeM_ Van Onsem's user avatar