Die Beschriftung der Tabelle soll so aussehen:
Kursiv habe ich die Überschrift schon bekommen. Allerdings funktioniert es bei mir nicht, dass die Bezeichnung der Tabelle unter "Table 1" steht. Mit Öffne in Overleaf
\documentclass[12pt,a4paper]{article} \usepackage[utf8]{inputenc} \usepackage{tabularx} \usepackage[nooneline, textfont=it]{caption} \captionsetup{onlinecaptionsfalse} \begin{document} \begin{table}[htb] \caption{Eine Tabelle} \begin{tabularx}{\linewidth}{@{\extracolsep{\fill}}*1l r r r r r r} \hline &&& \multicolumn{4}{c}{Kategorie}\\ \cline{4-7} & \multicolumn{2}{c}{Gesamt} & \multicolumn{2}{c}{Subkategorie} & \multicolumn{2}{c}{Subkategorie} \\ & \multicolumn{2}{c}{Text} & \multicolumn{2}{c}{Text} & \multicolumn{2}{c}{Text} \\ \hline Ein längeres Wort oder zwei & xx.xx & y.yy & xx.xx & yy.yy & xx.xx & y.yy \\ Ein anderes Wort & xx.xx & yy.yy & xx.xx & y.yy & xx.xx & yy.yy\\ \end{tabularx} \end{table} \end{document} |
Eine Einstellung Was du suchst, dürfte ein neues Format sein, etwas wie: Öffne in Overleaf
\documentclass[12pt,a4paper]{article} \usepackage[utf8]{inputenc} \usepackage{tabularx} \usepackage[nooneline, textfont=it]{caption} \DeclareCaptionFormat{linebreak}{#1#2\\#3} \captionsetup{format=linebreak} \begin{document} \begin{table}[htb] \caption{Eine Tabelle} \begin{tabularx}{\linewidth}{@{\extracolsep{\fill}}*1l r r r r r r} \hline &&& \multicolumn{4}{c}{Kategorie}\\ \cline{4-7} & \multicolumn{2}{c}{Gesamt} & \multicolumn{2}{c}{Subkategorie} & \multicolumn{2}{c}{Subkategorie} \\ & \multicolumn{2}{c}{Text} & \multicolumn{2}{c}{Text} & \multicolumn{2}{c}{Text} \\ \hline Ein längeres Wort oder zwei & xx.xx & y.yy & xx.xx & yy.yy & xx.xx & y.yy \\ Ein anderes Wort & xx.xx & yy.yy & xx.xx & y.yy & xx.xx & yy.yy\\ \end{tabularx} \end{table} \end{document} Wie ich gerade sehe, ist genau so ein Format übrigens als erstes Beispiel unter 4.1 in der Ergänzend möchte ich dir die Verwendung von beantwortet 28 Feb '18, 15:10 gast3 |