Ich schreibe gerade an meiner Diplomarbeit und möchte die Schriftgröße in Tabellen auf 9pt reduzieren, während der Rest des Dokuments in Größe 10 geschrieben ist. Dies tue ich, indem ich die Tabellenumgebung mit \begin{small} und \end{small} umschließe. Das Problem dabei ist, dass sich sobald ich das tue der Zeilenabstand in dem gesamten Unterabschnitt, in dem sich die Tabelle befindet, verringert ...
Warum wirkt sich das "small" auch auf das Dokument ausserhalb der Tabelle aus???
Ich habe schon überall gesucht und weiß mittlerweile keinen Rat mehr!
Würde mich über jegliche Hilfe freuen!!!
Hier mein Beispiel-Code:
\documentclass[paper=a4,paper=portrait,fontsize=11pt]{scrbook} %scrbook \usepackage[table]{xcolor} \usepackage[]{graphicx} \usepackage{microtype,ellipsis,wrapfig,float,subfigure} \usepackage[section]{placeins} \usepackage[leftcaption,raggedright]{sidecap} \usepackage{caption} \captionsetup{ margin = 10pt, font = {small,rm}, labelfont = {small,bf}, format = plain, % oder 'hang' indention = 0em, labelsep = colon, justification = justified, singlelinecheck = true, position = bottom } \DeclareCaptionOption{parskip}[]{} \DeclareCaptionOption{parindent}[]{} \usepackage{longtable} \addtokomafont{caption}{\normalsize} \usepackage[latin1]{inputenc} \usepackage{german, bibgerm} \usepackage[german]{babel} \usepackage[german]{varioref} \usepackage[LGR,T1]{fontenc} \usepackage[centertags,sumlimits,intlimits,namelimits]{amsmath} \setlength\parindent{0pt} \usepackage[hmargin=2.5cm,vmargin=2.5cm,bottom=2.8cm,top=3cm]{geometry} \usepackage{scrpage2} \rehead{} \lehead{\rightmark} \lohead{} \rohead{\leftmark} \chead{} \pagestyle{scrheadings} \automark[chapter]{section} \setheadsepline{0.6pt} \begin{document} \mainmatter \chapter{Teil1} \section{Daten1} Hirschmann 2005: Contrasting storage capacities between olivine and wadsleyite may influence the depth and thickness interval of the phase transition and therefore the seismic thickness of the 410 km transition. Wood [20] applied a simple thermodynamic theory to show that large amounts of H2O diminishes the depth of the transition and increase the transformation interval. Recent experimental tests of this hypothesis have been equivocal. \section{Daten2} Hirschmann 2005: Contrasting storage capacities between olivine and wadsleyite may influence the depth and thickness interval of the phase transition and therefore the seismic thickness of the 410 km transition. Wood [20] applied a simple thermodynamic theory to show that large amounts of H2O diminishes the depth of the transition and increase the transformation interval. Recent experimental tests of this hypothesis have been equivocal. \begin{small} \begin{longtable}{|l|c|c|r|r|r|c|c|c|c|} \caption[test]{test} \label{tab-bebenanalyse_knet} \\ \hline \multicolumn{1}{|c|}{\textbf{\#}} & \multicolumn{1}{c|}{\textbf{Datum}} & \multicolumn{1}{c|}{\textbf{Zeit}} & \multicolumn{1}{c|}{\textbf{Breite}} & \multicolumn{1}{c|}{\textbf{Länge}} & \multicolumn{1}{c|}{\textbf{Tiefe}} & \multicolumn{1}{c|}{\textbf{Mag.}} & \multicolumn{1}{c|}{\textbf{Typ}} & \multicolumn{1}{c|}{\textbf{Quelle}} & \multicolumn{1}{c|}{\textbf{Stations-}} \\ \multicolumn{1}{|c|}{} & \multicolumn{1}{c|}{\textbf{JJJJ-MM-TT}} & \multicolumn{1}{c|}{\textbf{h:min:sec}} & \multicolumn{1}{c|}{\textbf{[°]}} & \multicolumn{1}{c|}{\textbf{[°]}} & \multicolumn{1}{c|}{\textbf{[km]}} & \multicolumn{1}{c|}{\textbf{}} & \multicolumn{1}{c|}{\textbf{}} & \multicolumn{1}{c|}{\textbf{}} & \multicolumn{1}{c|}{\textbf{anzahl}} \\ \hline\hline \endfirsthead \hline \multicolumn{1}{|c|}{\textbf{\#}} & \multicolumn{1}{c|}{\textbf{Datum}} & \multicolumn{1}{c|}{\textbf{Zeit}} & \multicolumn{1}{c|}{\textbf{Breite}} & \multicolumn{1}{c|}{\textbf{Länge}} & \multicolumn{1}{c|}{\textbf{Tiefe}} & \multicolumn{1}{c|}{\textbf{Mag.}} & \multicolumn{1}{c|}{\textbf{Typ}} & \multicolumn{1}{c|}{\textbf{Quelle}} & \multicolumn{1}{c|}{\textbf{Stations-}} \\ \multicolumn{1}{|c|}{} & \multicolumn{1}{c|}{\textbf{JJJJ-MM-TT}} & \multicolumn{1}{c|}{\textbf{h:min:sec}} & \multicolumn{1}{c|}{\textbf{[°]}} & \multicolumn{1}{c|}{\textbf{[°]}} & \multicolumn{1}{c|}{\textbf{[km]}} & \multicolumn{1}{c|}{\textbf{}} & \multicolumn{1}{c|}{\textbf{}} & \multicolumn{1}{c|}{\textbf{}} & \multicolumn{1}{c|}{\textbf{anzahl}} \\ \hline\hline \endhead \hline \endfoot 3 & 1999-08-18 & 01:16:47,100 & -37,36 & 177,38 & 151 & 6,0 & MB & ISC & 16\\ 4 & 1999-10-25 & 20:31:33,800 & -38,34 & 175,30 & 83 & 6,0 & MB & ISC & 27\\ \end{longtable} \end{small} \end{document}