So verteilen Sie Leerzeichen gleichmäßig auf mehrere Spalten

So verteilen Sie Leerzeichen gleichmäßig auf mehrere Spalten

Ich habe eine Tabelle mit einem horizontalen Titel über den Mehrfachspalten. In manchen Fällen ist der horizontale Titel breiter als die Mehrfachspalten. Dies führt zu ungleichmäßig verteilten Spalten, die nicht schön aussehen. Ich muss dieses Problem beheben, indem ich die Spalten gleichmäßig im Raum verteile. Dies ist ein Beispielskript mit einer Abbildung.

\documentclass[10pt]{article}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{pifont}% http://ctan.org/pkg/pifont
\newcommand{\cmark}{\ding{51}}
\newcommand{\xmark}{\ding{55}}
\newcommand*\rot{\rotatebox{90}}

\begin{document}
\begin{table} 
\caption{MyTable}
\centering
\resizebox{\textwidth}{!} {
\begin{tabular} {@{} lc*{14}l @{}}
\hline
\\ 
\multicolumn{1}{c}{Column1} 
&&\multicolumn{3}{c}{Column2}    
&&\multicolumn{3}{c}{ColumnLongTitle}  
&&\multicolumn{2}{c}{Column3}  
&&\multicolumn{2}{c}{Column4}  
\\
\cmidrule(lr){1-1} 
\cmidrule(lr){3-5} 
\cmidrule(lr){7-9}
\cmidrule(lr){11-12}
\cmidrule(lr){14-15}
\\
& \vline &\rot{Title1} & \rot{Title2} & \rot{Title3} 
& \vline & \rot{Title1} & \rot{Title2} & \rot{Title3} 
& \vline & \rot{Title1} & \rot{Title2} 
& \vline & \rot{Title1} & \rot{Title2} 
\\ \hline
Row1 & \vline & {} & \cmark & {} & \vline & \cmark & {} & {} & \vline &  & \cmark & \vline & \cmark & {} &  \\
\hline
Row2 & \vline & \cmark & {} & {} & \vline & \cmark & {} & {} & \vline & {} & \cmark & \vline & \cmark & {} &  \\
\hline
Row3 & \vline & {} & \cmark & {} & \vline & \cmark & {} & {} & \vline & {} & \cmark & \vline & \cmark & {} &  \\
\hline
\end{tabular}
}
\end{table}
\end{document}

Bildbeschreibung hier eingeben

BEARBEITEN 2:Ich habe die von @Bernard bereitgestellte Lösung ausprobiert. Aber es gibt noch ein anderes Problem. Wenn ich in der ersten Zeile einen langen Text hinzufügen muss, wird die gesamte Tabelle verzerrt. Können Sie erklären, wie man dieses Problem vermeidet? Meine Textlänge variiert. Ich habe in der Zelle ganz links in jeder Zeile einen ziemlich langen Text. Dies ist ein Beispiel für ein Skript, das Sie ausführen können, um das Problem zu sehen.

\documentclass[10pt]{article}
%\usepackage{showframe}
%\renewcommand\ShowFrameLinethickness{0.3pt}
\usepackage{graphicx}
\usepackage{booktabs, tabularx, caption, makecell}
\setcellgapes{3pt}
\usepackage{pifont}% http://ctan.org/pkg/pifont
\newcommand{\cmark}{\ding{51}}
\newcommand{\xmark}{\ding{55}}
\newcommand*\rot{\rotatebox{90}}

\begin{document}
\begin{table}
\caption{MyTable}
\centering\makegapedcells
\begin{tabularx}{\linewidth}{@{} l|*{3}{>{\centering\arraybackslash}X} |*{3}{>{\centering\arraybackslash}X}| *{2}{>{\centering\arraybackslash}X}| *{2}{>{\centering\arraybackslash}X}|@{}}
\hline
\multicolumn{1}{c}{Column1}
&\multicolumn{3}{c}{Column2}
&\multicolumn{3}{c}{ColumnLongTitle}
&\multicolumn{2}{c}{Column3}
&\multicolumn{2}{c}{Column4}
\\
\cmidrule(lr){1-1}
\cmidrule(lr){2-4}
\cmidrule(lr){5-7}
\cmidrule(lr){8-9}
\cmidrule(lr){10-11}
\addlinespace
 &\rot{Title1} & \rot{Title2} & \rot{Title3}
 & \rot{Title1} & \rot{Title2} & \rot{Title3}
 & \rot{Title1} & \rot{Title2}
 & \rot{Title1} & \rot{Title2}
\\\hline

AAAAAAAAAAAAAAAAAAAAAAAA & {} & \cmark & {} & \cmark & {} & {} & & \cmark & \cmark & {} \\
\hline
Row2 & \cmark & {} & {} & \cmark & {} & {} & {} & \cmark & \cmark & {} \\
\hline
Row3 & {} & \cmark & {} & \cmark & {} & {} & {} & \cmark & \cmark & {} \\ 

 \hline
\end{tabularx}
\end{table}

\end{document} 

Antwort1

Sie können die natürliche Breite der Spalten größer als die Spanne machen. Ich habe auch alle leeren Spalten entfernt, da sie verwirrend erschienen.

Bildbeschreibung hier eingeben

\documentclass[10pt]{article}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{pifont}% http://ctan.org/pkg/pifont
\newcommand{\cmark}{\ding{51}}
\newcommand{\xmark}{\ding{55}}
\newcommand*\rot[1]{\rotatebox{90}{#1 }}
\usepackage{array}

\begin{document}
\begin{table} 
\caption{MyTable}
\setlength\extrarowheight{4pt}
\centering
%\resizebox{\textwidth}{!} {% scaling tables is evil but of you do do it,. you need a % here
\begin{tabular*}{\textwidth} {@{\extracolsep{\textwidth minus \textwidth}}
 l|ccc|ccc|cc|cc@{}}
\hline
\multicolumn{1}{@{}c}{Column1} 
&\multicolumn{3}{c}{Column2}    
&\multicolumn{3}{c}{\makebox[0pt]{ColumnLongTitle}}
&\multicolumn{2}{c}{Column3}  
&\multicolumn{2}{c@{}}{Column4}  
\\
\cmidrule(lr){1-1} 
\cmidrule(lr){2-4} 
\cmidrule(lr){5-7}
\cmidrule(lr){8-9}
\cmidrule(lr){10-11}
\multicolumn{1}{@{}c}{}
&\rot{Title1} & \rot{Title2} & \rot{Title3} 
& \rot{Title1} & \rot{Title2} & \rot{Title3} 
& \rot{Title1} & \rot{Title2} 
& \rot{Title1} & \rot{Title2} 
\\ \hline
Row1 &  &  \cmark & & \cmark   &  & & & \cmark & \cmark &   \\
\hline
Row2 & \cmark &  &  &  \cmark   &  &  & & \cmark & \cmark &   \\
\hline
Row3 &  & \cmark & &  \cmark   &  &  & &\cmark & \cmark &   \\
\hline
\end{tabular*}


\end{table}
\end{document}

Antwort2

Eine Lösung mit tabularxund makecell. Ich habe die senkrechten Striche und die leeren Spalten entfernt. Damit der Spaltenkopf zwei breiter wird, schreibe ich ihn in einen \theadBefehl, der Umbrüche zulässt.

\documentclass[10pt]{article}
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.3pt}
\usepackage{graphicx}
\usepackage{booktabs, tabularx, caption, makecell}
\setcellgapes{3pt}
\usepackage{pifont}% http://ctan.org/pkg/pifont
\newcommand{\cmark}{\ding{51}}
\newcommand{\xmark}{\ding{55}}
\newcommand*\rot{\rotatebox{90}}

\begin{document}
\begin{table}
\caption{MyTable}
\centering\makegapedcells
\begin{tabularx}{\linewidth}{@{} l|*{3}{>{\centering\arraybackslash}X} |*{3}{>{\centering\arraybackslash}X}| *{2}{>{\centering\arraybackslash}X}| *{2}{>{\centering\arraybackslash}X}|@{}}
\hline
\multicolumn{1}{c}{Column1}
&\multicolumn{3}{c}{Column2}
&\multicolumn{3}{c}{ColumnLongTitle}
&\multicolumn{2}{c}{Column3}
&\multicolumn{2}{c}{Column4}
\\
\cmidrule(lr){1-1}
\cmidrule(lr){2-4}
\cmidrule(lr){5-7}
\cmidrule(lr){8-9}
\cmidrule(lr){10-11}
\addlinespace
 &\rot{Title1} & \rot{Title2} & \rot{Title3}
 & \rot{Title1} & \rot{Title2} & \rot{Title3}
 & \rot{Title1} & \rot{Title2}
 & \rot{Title1} & \rot{Title2}
\\\hline
Row1 & {} & \cmark & {} & \cmark & {} & {} & & \cmark & \cmark & {} \\
\hline
Row2 & \cmark & {} & {} & \cmark & {} & {} & {} & \cmark & \cmark & {} \\
\hline
Row3 & {} & \cmark & {} & \cmark & {} & {} & {} & \cmark & \cmark & {} \\
\hline
\end{tabularx}
\end{table}

\end{document} 

Bildbeschreibung hier eingeben

Eine Variante, wenn die Zellen in der ersten Spalte längeren Text enthalten: Die erste Spalte ist eine XTypspalte, doppelt so breit wie das 10 otherX- columns in the cell. Also, I loaded theGeometriepaket, für sinnvollere horizontale Ränder, wenn Sie keine Randnotizen haben:

\documentclass[10pt]{article}
\usepackage[showframe]{geometry}
\usepackage{graphicx}
\usepackage{booktabs, tabularx, caption, makecell}
\setcellgapes{3pt}
\newcolumntype{Y}{ >{\hsize=2\hsize\arraybackslash}X}
\newcolumntype{Z}{ >{\hsize=0.9\hsize\centering\arraybackslash}X}
\usepackage{pifont}% http://ctan.org/pkg/pifont
\newcommand{\cmark}{\ding{51}}
\newcommand{\xmark}{\ding{55}}
\newcommand*\rot{\rotatebox{90}}

\begin{document}
\begin{table}
\caption{MyTable}
\centering\makegapedcells
\begin{tabularx}{\linewidth}{@{}Y|*{3}{Z} |*{3}{Z}| *{2}{Z}| *{2}{Z}|@{}}
\hline
\multicolumn{1}{c}{Column1}
&\multicolumn{3}{c}{Column2}
&\multicolumn{3}{c}{ColumnLongTitle}
&\multicolumn{2}{c}{Column3}
&\multicolumn{2}{c}{Column4}
\\
\cmidrule(lr){1-1}
\cmidrule(lr){2-4}
\cmidrule(lr){5-7}
\cmidrule(lr){8-9}
\cmidrule(lr){10-11}
\addlinespace
 &\rot{Title1} & \rot{Title2} & \rot{Title3}
 & \rot{Title1} & \rot{Title2} & \rot{Title3}
 & \rot{Title1} & \rot{Title2}
 & \rot{Title1} & \rot{Title2}
\\\hline

AA AAA AAA AA AA AAA AAA AAA AAA & {} & \cmark & {} & \cmark & {} & {} & & \cmark & \cmark & {} \\
\hline
Row2 & \cmark & {} & {} & \cmark & {} & {} & {} & \cmark & \cmark & {} \\
\hline
Row3 & {} & \cmark & {} & \cmark & {} & {} & {} & \cmark & \cmark & {} \\

 \hline
\end{tabularx}
\end{table}

\end{document} 

Bildbeschreibung hier eingeben

Antwort3

Leicht modifiziertBernhardAntwort:

\documentclass[10pt]{article}
\usepackage{geometry}

\usepackage{rotating}
\usepackage{booktabs, makecell, tabularx}
\setcellgapes{3pt}
\renewcommand\theadfont{\normalsize}
\newcolumntype{C}{>{\setlength\hsize{0.7\hsize}\centering  \arraybackslash}X}
\newcolumntype{L}{>{\setlength\hsize{3.0\hsize}\raggedright\arraybackslash}X}
\newcommand\mcn[2]{\multicolumn{#1}{c}{#2}}

\usepackage{caption}
\usepackage{pifont}% http://ctan.org/pkg/pifont
\newcommand{\cmark}{\ding{51}}
\newcommand{\xmark}{\ding{55}}

\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.3pt}
\renewcommand*\ShowFrameColor{\color{red}}

\begin{document}
    \begin{table}
    \caption{My Table}
\centering
\makegapedcells
\settowidth\rotheadsize{\theadfont Title 3}
\begin{tabularx}{\linewidth}{@{} L | *{3}{C} | *{3}{C} | *{2}{C} | *{2}{C} @{}}
    \hline
\mcn{1}{Column1}    &   \mcn{3}{Column2}    &   \mcn{3}{ColumnLongTitle}
        &   \mcn{2}{Column3}    &   \mcn{2}{Column4}                    \\
\cmidrule(lr){1-1}\cmidrule(lr){2-4}\cmidrule(lr){5-7}
    \cmidrule(lr){8-9}\cmidrule(lr){10-11}
 & \rothead{Title1} & \rothead{Title2} & \rothead{Title3}
 & \rothead{Title1} & \rothead{Title2} & \rothead{Title3}
 & \rothead{Title1} & \rothead{Title2}
 & \rothead{Title1} & \rothead{Title2}                                  \\
    \hline
AAAAAAAAAAAA AAAAAAAAAAAA
      &          & \cmark &   & \cmark &   &   &   & \cmark & \cmark &   \\
    \hline
Row 2 & \cmark   &        &   & \cmark &   &   &   & \cmark & \cmark &   \\
    \hline
Row 3 &          & \cmark &   & \cmark &   &   &   & \cmark & \cmark &   \\
    \hline
\end{tabularx}
    \end{table}
\end{document} 

Hauptunterschiede:

  • für rotierte Header wird \rotheadaus dem Paket verwendetmakecell
  • definierter neuer Befehl \mcn{...}{...}als Tastenkürzel für\multicolumn{...}{c}{...}
  • alle überzähligen geschweiften Klammern in leeren Zellen gelöscht

Bildbeschreibung hier eingeben

verwandte Informationen