Markdown to PDF for an academic paper
Most academic papers are 80% prose with a couple of tables. The browser converter handles those cleanly. The remaining 20% - math, citations, reference management - is still Pandoc territory.
What the converter handles well for papers
- Abstract / Introduction / Method / Findings / Discussion / Conclusion structure.
- Tables of data with proper column alignment.
- Figures (drag-and-drop PNG / JPG).
- Numbered headings + ToC.
- Block quotes for cited sources.
- References section as a numbered list at the end.
What's missing vs Pandoc + LaTeX
- Inline math - `$E = mc^2$` renders as plain text, not typeset math.
- Display math equations.
- BibTeX citation processing - you have to format references by hand.
- Cross-references that auto-update - no `\ref{fig:1}`-style links.
- Custom citation styles (APA, Chicago, IEEE) - manual.
- Multi-column layouts.
When to use which
If your paper is in a humanities / social science domain with prose-heavy structure and minimal math, the browser converter is faster and produces better-looking output by default. If your paper is in a STEM domain with significant equations and a citation database, install Pandoc and accept the setup tax - it pays off across the project.
FAQ
Can I add LaTeX-style math by writing the equation as an image?
Yes. Render the equation in a math editor (TeXStudio, Mathpix), export as PNG, drag-and-drop. Quality is fine for a poster or presentation; for a published paper, use real LaTeX.
How are figures captioned?
The image alt text is the caption. Standard Markdown image syntax: ``.
Can I export to a journal's required template?
Most journals want LaTeX or DOCX with their style. Export to DOCX from the converter, then apply the journal's template. The structure transfers; the style needs the journal's stylesheet.
Related
https://md2document.com/markdown-to-pdf-for-academic-paper/