Table Converter

LaTeX Table to Typst

Convert your LaTeX tabular environments to Typst table syntax. All table features supported.

Instant Conversion

Paste your LaTeX table, get Typst table code instantly.

All Features

Handles alignment, borders, multicolumn, multirow, and more.

Clean Output

Produces readable, well-formatted Typst table code.

Ready to Use

Copy the converted table and paste into your Typst document.

Conversion Examples

Basic Table
LaTeX
\begin{tabular}{|c|c|}
\hline
A & B \\
\hline
1 & 2 \\
\hline
\end{tabular}
Typst
#table(
  columns: 2,
  stroke: 1pt,
  [A], [B],
  [1], [2],
)
Column Alignment
LaTeX
\begin{tabular}{lcr}
Left & Center & Right \\
\end{tabular}
Typst
#table(
  columns: (auto, auto, auto),
  align: (left, center, right),
  [Left], [Center], [Right],
)
Multicolumn
LaTeX
\multicolumn{2}{c}{Span}
Typst
table.cell(colspan: 2)[Span]
Horizontal Line
LaTeX
\hline
Typst
table.hline()
Partial Line
LaTeX
\cline{2-3}
Typst
table.hline(start: 1, end: 3)

Supported Features

Column alignment (l, c, r)
Vertical borders (|)
Horizontal lines (\hline)
Partial lines (\cline)
Multicolumn cells
Multirow cells
Column width (p{}, m{}, b{})
Booktabs (\toprule, etc.)
Longtable
Table captions

Typst Tables are Simpler

No Environments

Just #table(...) instead of begin/end tabular

Content in Brackets

Each cell is [content], cleaner than & separators

Named Parameters

columns: 3 is more readable than {ccc}

FAQ

Does this support complex tables?

Yes, we support most LaTeX table features including multicolumn, multirow, various alignments, borders, and booktabs styling. Very complex nested tables may need minor adjustments.

What about booktabs?

Booktabs commands (\toprule, \midrule, \bottomrule) are converted to Typst's table.hline() with appropriate styling for professional-looking tables.

Can I convert table environments with captions?

Yes, \begin{table}...\caption{...}\end{table} is converted to Typst's #figure(table(...), caption: [...]) structure.

What about longtable?

Longtable is supported. Typst handles page breaks in tables automatically, so the conversion produces a standard table that will break across pages as needed.

Convert Your Tables

Use our full converter to transform entire LaTeX documents including tables, math, figures, and text.

Convert LaTeX to Typst

Related Tools

LaTeX Table to Typst Converter 2026 | Tabular to Table | TypeTeX | TypeTeX