CSV形式のファイルからTeXテーブルを作成するコマンドラインツール。
C言語がコンパイルできて、以下のライブラリが使える環境。
- stdio.h
- stdlib.h
- string.h
- unistd.h
input.csv
AAA,BBB,CCC
111,222,333
444,555,666
777,888,999
csv2tex input.csv
output.txt
\begin{table}[h]
\begin{center}
\begin{tabular}{l|l|l}
\hline \hline
AAA & BBB & CCC \\ \hline
111 & 222 & 333 \\
444 & 555 & 666 \\
777 & 888 & 999 \\ \hline
\end{tabular}
\end{center}
\end{table}
csv2tex input.csv output2.txt
output2.txt
\begin{table}[h]
\begin{center}
\begin{tabular}{l|l|l}
\hline \hline
AAA & BBB & CCC \\ \hline
111 & 222 & 333 \\
444 & 555 & 666 \\
777 & 888 & 999 \\ \hline
\end{tabular}
\end{center}
\end{table}
csv2tex -c test -l table:test input.csv
output.txt
\begin{table}[h]
\caption{test}
\label{table:test}
\begin{center}
\begin{tabular}{l|l|l}
\hline \hline
AAA & BBB & CCC \\ \hline
111 & 222 & 333 \\
444 & 555 & 666 \\
777 & 888 & 999 \\ \hline
\end{tabular}
\end{center}
\end{table}
csv2tex -p htbp input.csv
output.txt
\begin{table}[htbp]
\begin{center}
\begin{tabular}{l|l|l}
\hline \hline
AAA & BBB & CCC \\ \hline
111 & 222 & 333 \\
444 & 555 & 666 \\
777 & 888 & 999 \\ \hline
\end{tabular}
\end{center}
\end{table}
csv2tex -f grid input.csv
output.txt
\begin{table}[h]
\begin{center}
\begin{tabular}{|l|l|l|}
\hline
AAA & BBB & CCC \\ \hline
111 & 222 & 333 \\ \hline
444 & 555 & 666 \\ \hline
777 & 888 & 999 \\ \hline
\end{tabular}
\end{center}
\end{table}
csv2tex -f none input.txt
output.txt
\begin{table}[h]
\begin{center}
\begin{tabular}{lll}
AAA & BBB & CCC \\
111 & 222 & 333 \\
444 & 555 & 666 \\
777 & 888 & 999 \\
\end{tabular}
\end{center}
\end{table}
input2.csv
AAA BBB CCC
111 222 333
444 555 666
777 888 999
input3.csv
AAA BBB CCC
111 222 333
444 555 666
777 888 999
csv2tex -T input2.csv
csv2tex -S input3.csv
output.txt
\begin{table}[h]
\begin{center}
\begin{tabular}{l|l|l}
\hline \hline
AAA & BBB & CCC \\ \hline
111 & 222 & 333 \\
444 & 555 & 666 \\
777 & 888 & 999 \\ \hline
\end{tabular}
\end{center}
\end{table}
homebrew
を利用する。または、make
を行う。もしくはcsv2tex.c
をコンパイルして実行する。
# install
brew tap yoidea/csv2tex
brew install csv2tex
# run
csv2tex -T -f grid input.csv
# install
git clone https://github.com/yoidea/csv2tex.git
cd csv2tex/
make
# run
./csv2tex -T -f grid input.csv
# install
git clone https://github.com/yoidea/csv2tex.git
cd csv2tex/
gcc -o csv2tex csv2tex.c
# run
./csv2tex -T -f grid input.csv