Skip to main content

All Questions

Tagged with
0 votes
1 answer
221 views

Render markdown with math wrapped in escaped parenthesis / brackets to PDF?

Background / use case: https://genai.stackexchange.com/questions/386/how-does-chatgpt-render-math-in-markdown-output The \( ... \) syntax in markdown corresponds to LaTex math inline mode, and the \[ ....
Teddy C's user avatar
  • 357
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
2 votes
3 answers
1k views

Two columns pdf from markdown with pandoc and lua script

I want to render a two columns pdf document using markdown fenced divs. The minimal example is this : :::::::::::::: {.columns data-latex=""} ::: {.column width="40%" data-latex=&...
ChrisAga's user avatar
  • 141
2 votes
1 answer
343 views

Format to generate .tex, .pdf and .md from?

I've used Pandoc to generate .md, .tex, .pdf from .tex and .xhtml files. In tex I am using BibTeX and in ODT (save-as .xhtml) I am using Zotero to insert my citations. Currently neither .tex nor ....
A T's user avatar
  • 801
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