Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>CSV2LaTeXNew to Visual Studio Code? Get it now.
CSV2LaTeX

CSV2LaTeX

k-kuroguro

|
1,609 installs
| (1) | Free
VSCode extension for converting CSV or Excel table to LaTeX tabular.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

CSV2LaTeX

Marketplace Version CI License: MIT

vscode-csv2latex

VSCode extension for converting CSV or Excel table to LaTeX tabular.

Demo

How to use

  1. Copy CSV or Excel table.
  2. Execute command CSV2LaTeX: Paste As Tabular From CSV or Excel via command palette or context menu.

Available Commands

  • CSV2LaTeX: Paste As Tabular From CSV
  • CSV2LaTeX: Paste As Tabular From Excel
  • CSV2LaTeX: Enable Pasting Body Only
  • CSV2LaTeX: Disable Pasting Body Only

Available Config

pasteBodyOnly

This controls whether pasting body only. You can enable or disable not only via settings.json but also via command CSV2LaTeX: Enable Pasting Body Only or CSV2LaTeX: Disable Pasting Body Only.

True

index   & x    & y    & z   \\
1       & 10.1 & 23.4 & 3.2 \\
2       & 10.3 & 23.7 & 3.3 \\
3       & 10.4 & 23.8 & 3.1 \\
4       & 10.0 & 23.6 & 3.3 \\
5       & 10.2 & 23.6 & 3.4 \\
average & 10.2 & 23.6 & 3.3 \\

False

\begin{table}
   \begin{tabular}{llll}
      index   & x    & y    & z   \\
      1       & 10.1 & 23.4 & 3.2 \\
      2       & 10.3 & 23.7 & 3.3 \\
      3       & 10.4 & 23.8 & 3.1 \\
      4       & 10.0 & 23.6 & 3.3 \\
      5       & 10.2 & 23.6 & 3.4 \\
      average & 10.2 & 23.6 & 3.3 \\
   \end{tabular}
\end{table}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft