How do I make a table using \begin{table*} in LaTeX?
The table I am trying to create is slightly complicated, and it should look like this:
Sorry for the crooked lines of the image.
So far, I have been only able to make something simple:
\begin{table*}[t]
\centering
\begin{tabular}{ *1c | *3c | *3c | *2c | }
& & & & & & & & & & & & \\
% Keep adding as many numbers of rows, etc.
\end{tabular}
\end{table}
With this code, I have the following columns - Name, Text 1, Text 2, Text 3, Text 4, Text 5, Text 6, Text 7, and Text 8. And I can add as many rows as I want across the table.
I do not have the Category 1, Category 2 and Category 3 pat on the left and top side of the image.




multirowhttps://www.ctan.org/pkg/multirow?lang=de – Marco Daniel Mar 23 '17 at 10:01