Ich kenne den Befehl Open in Online-Editor
\documentclass{scrartcl} \usepackage[ngerman]{cleveref} \begin{document} \begin{table}[htbp] \centering \begin{tabular}{|c|c|c|c|c|c|c|c|c|} \hline 5 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1\\ 10 & 1 & 2 & 2 & 2 & 2 & 2 & 2 & 2\\ 20 & 2 & 2 & 2 & 2 & 2 & 2 & 2 & 2\\ 30 & 2 & 3 & 3 & 3 & 3 & 3 & 3 & 3\\ 40 & 2 & 4 & 4 & 4 & 4 & 4 & 4 & 4\\ 50 & 2 & 4 & 4 & 4 & 4 & 4 & 4 & 4\\ \hline \end{tabular} \caption{Kammerdruck} \label{tab:pO2} \end{table} \end{document} gefragt 27 Jan '16, 11:49 Christof |
Man kann vertikale Linien jeder Zeit mit Hilfe von Open in Online-Editor
\documentclass{scrartcl} \begin{document} \begin{table} \centering \begin{tabular}{|c|c|c|c|c|c|c|c|c|} \hline 5 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1\\ 10 & 1 & \multicolumn{1}{c}{2} & 2 & 2 & 2 & 2 & 2 & 2\\ 20 & 2 & 2 & 2 & 2 & 2 & 2 & 2 & 2\\ 30 & 2 & 3 & 3 & 3 & \multicolumn{1}{c}{3} & 3 & 3 & 3\\ 40 & 2 & 4 & 4 & 4 & 4 & 4 & 4 & 4\\ 50 & 2 & 4 & 4 & 4 & 4 & 4 & 4 & 4\\ \hline \end{tabular} \caption{Kammerdruck} \label{tab:pO2} \end{table} \end{document} Umgekehrt kann man auch vertikale Linien mit Hilfe von Open in Online-Editor
\documentclass{scrartcl} \begin{document} \begin{table} \centering \begin{tabular}{*9c} \hline 5 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1\\ 10 & \multicolumn{1}{c|}{1} & \multicolumn{1}{c|}{2} & 2 & 2 & 2 & 2 & 2 & 2\\ 20 & 2 & 2 & 2 & 2 & 2 & 2 & 2 & 2\\ 30 & 2 & 3 & 3 & 3 & \multicolumn{1}{c|}{3} & 3 & 3 & 3\\ 40 & 2 & 4 & 4 & 4 & 4 & 4 & 4 & 4\\ 50 & 2 & 4 & 4 & 4 & 4 & 4 & 4 & 4\\ \hline \end{tabular} \caption{Kammerdruck} \label{tab:pO2} \end{table} \end{document} Die Anweisung In der Regel werden Tabellen allerdings ohne vertikale Linien besser, das diese den normalerweise horizontal ausgerichteten Lesefluss extrem stören: Open in Online-Editor
\documentclass{scrartcl} \usepackage{booktabs} \begin{document} \begin{table} \centering \begin{tabular}{*9c} \toprule 5 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1\\ 10 & 1 & 2 & 2 & 2 & 2 & 2 & 2 & 2\\ 20 & 2 & 2 & 2 & 2 & 2 & 2 & 2 & 2\\ 30 & 2 & 3 & 3 & 3 & 3 & 3 & 3 & 3\\ 40 & 2 & 4 & 4 & 4 & 4 & 4 & 4 & 4\\ 50 & 2 & 4 & 4 & 4 & 4 & 4 & 4 & 4\\ \bottomrule \end{tabular} \caption{Kammerdruck} \label{tab:pO2} \end{table} Siehe auch die Anleitung zum Paket beantwortet 27 Jan '16, 12:02 saputello |