Markdown to LaTeX Converter for Academic Papers
Convert Markdown to LaTeX for Overleaf, thesis preparation, academic papers. Supports math equations, citations, tables. Private, browser-based.
Note: First conversion initializes Pandoc WebAssembly (~55MB). Subsequent conversions are instant.
Drop Markdown file here or click to browse
Accepts .md, .txt filesMarkdown to LaTeX Quick Reference
| Markdown | LaTeX Output | Description |
|---|---|---|
# Heading | \section{Heading} | Top-level section |
## Heading | \subsection{Heading} | Second-level section |
**bold** | \textbf{bold} | Bold text |
*italic* | \textit{italic} | Italic text |
$E = mc^2$ | $E = mc^2$ | Inline math (preserved) |
$$...$$ | \[...\] | Display math equation |
- item | \begin{itemize}\item item\end{itemize} | Bullet list |
1. item | \begin{enumerate}\item item\end{enumerate} | Numbered list |
[text](url) | \href{url}{text} | Hyperlink |
| A | B | | \begin{tabular}{|l|l|} | Table structure |
Tips for Academic Writing
- Citations: Include LaTeX commands directly:
\cite{einstein1905} - Labels: Add section labels:
# Introduction {#sec:intro} - Figures: Use standard Markdown image syntax:
 - Overleaf: Download the .tex file and upload to Overleaf for compilation
- Custom packages: Edit the preamble after conversion to add
\usepackage{...}
Copied to clipboard