Alfred Workflow: A simple latex table template Creator

April 22, 2025 · 195 words

It is well known that manually creating the LaTeX Table is very annoying. Therefore, inspired by the Markdown Table workflow, I wrote this tool for the LaTeX and Alfred users.

Github Project

Alfred LaTeX Table

Generate LaTeX Table with Alfred Workflow. If you think this is useful, please ❤️Star❤️ this project.

screenshot

Installation

Install manually

Download and import alfred-latex-table.alfredworkflow.

Download Workflow File

Dependencies

Usage

Generate empty LaTeX table:

Latex Table 3 3

Output:
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|}
\hline
  &   &   \\
\hline
  &   &   \\
  &   &   \\
  &   &   \\
\hline
\end{tabular}
\caption{}
\label{tab:}
\end{table}

Generate LaTeX table with test data:

Latex Table 3 3 test
# `Latex Table 3 3 data` is an alternative

Output:
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|}
\hline
COMPASSIONATE ALBATTANI & INSPIRING RITCHIE & UPBEAT BABBAGE \\
\hline
determined_haibt & goofy_darwin & hungry_wilson \\
elegant_rosalind & suspicious_swirles & flamboyant_dijkstra \\
compassionate_blackwell & elastic_franklin & silly_bardeen \\
\hline
\end{tabular}
\caption{}
\label{tab:}
\end{table}

Credit

License

MIT