How to transform Google docs tables into Latex Tables?

This is exactly the same problem I and my classmates were having when writing our lab reports on Experimental Physics. Since we work in groups it's great to have data on the cloud. The problem was converting sometimes dozens of tables to Latex...

So, I and a classmate of mine came up with LatexKit, a google sheets add-on that creates and exports to your Google Drive a text file containing the tabular environment of a given table.

For your case, this won't handle page width or height, nor copy the exact borders you have configured (although there is a way to overcome this, keep reading), but it can help you get started with little trouble and systematically for multiple tables.

This add-on is developed using Google apps script so, unfortunately, the lack of some features is not easily overcomeable.

It does, however, help a lot when converting tables from Google Sheets to Latex

It has some additional features that could help you or someone else in the future.

Current Features:

  • Handles multirow and multicolumn environment using the multirow package

  • Handles uncertainties notation $\pm$ (especially useful to us at experimental physics)

  • Although it does not replicate your table's borders it has some templates for border configuration (like hlines everywhere or vertical lines everywhere)
  • Allows you to configure and export multiple tables at a time using the Named Range feature.

Features that can or will be implemented (given the time and will of the community):

  • Configure the table to have the same alignments as in your Spreadsheet
  • Handle different font styles like bold, italic, etc...
  • And a lot more, you just have to pitch us the idea! Reach us either trough facebook or e-mail: [email protected]

Here's LatexKit in action

This is the table on the spreadsheet:

This is the exact code produced by LatexKit using the template 'grid':

\begin{tabular}{|c|c|}
 \hline
Time (h) & Temperature (C)   \\ \hline
12       & 19.5 $\pm$ 0.4    \\ \hline
13       & 20.3 $\pm$ 0.6    \\ \hline
14       & 21.8 $\pm$ 0.7    \\ \hline
15       & 20.9 $\pm$ 0.6    \\ \hline
16       & 19.7 $\pm$ 0.4    \\ \hline
\end{tabular}

This is the result when compiled in Latex:

enter image description here

This is really a project to the community so we would gladly take your advice to improve!


You can use Spread-LaTeX, a simple add-on which was designed for converting a Google spreadsheet table to a LaTeX table or a LaTeX table to a Google Spreadsheet table.