arn4/LabTools

Permettere di specificare colonne di int nelle tabelle

Opened this issue · 1 comments

Altrimenti vengono mostrati come float.

Fix temporaneo tex-side, ispirato a https://tex.stackexchange.com/a/201554

\usepackage{multido}
...
\newcommand{\tblcont}{}
\makeatletter
\multido{\n = 1+1}{10}{\protected@xdef\tblcont{\tblcont \n \\}} % Si veda la documentazione di multido
\makeatother
\begin{table}[h]
    \begin{tabular}{c}
        \tblcont
    \end{tabular}%
    \begin{tabular}{|c|c}
        \input{./tex/tbl.tex}
    \end{tabular}
\end{table}