In a table I want to combine some of the columns, but not in all rows. How can I realize this with LaTeX?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
\multicolumn{<number>}{<formatting>}{<contents>}Where the arguments are
|c|‘ or the like)This command simply replaces the
<number>columns and is used inline.Addition: This is also how you change the formatting of a single field in only one row of the table. Just use
\multicolumn{1}{<new format>}{<contents>}.