I have a big table, which is hard to manage once I start filling in the cells. I would like to write something like \include{text_i_j} in each cell and write the corresponding code for the text outside of the table.
An example would look something like this:
\begin{center}
\begin{tabular}{| c | c | c |}
\include{text_1_1} & \include{text_1_2} & \include{text_1_3} \\
...
\include{text_10_1} & \include{text_10_2} & \include{text_10_3}
\end{tabular}
\end{center}
\define{text_1_1} Text 1 1
\define{text_1_2} Text 1 2
...
To get the following result:
How can I do this?


\newcommandI think. – David Carlisle Nov 04 '21 at 21:12\inputvs.\include? – Werner Nov 04 '21 at 21:22\verb|Text_i_j|will preserve the underbars, although if uses tt font. \url{...} from the url package will probably work. – John Kormylo Nov 05 '21 at 00:53