Seite 1 von 1

Schriftgröße in Tabelle beeinflusst Zeilenabstand in chapter

Verfasst: Mo 5. Mär 2012, 17:28
von ansev
Hallo!
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}

Verfasst: Mo 5. Mär 2012, 17:51
von Xenara
Ungetestet: Du verwendest small falsch, es ist ein Schalter, keine Umgebung.
Die Verwendung geht so:
\documentclass{scrreprt}

\begin{document}

Normaler Text, jetzt {\tiny kleiner Text} und ab hier wieder normalgross.

\end{document}
(Hier mit \tiny gezeigt, damit man den Unterschied deutlicher sieht, mit \small gehts genauso.)

Verfasst: Di 6. Mär 2012, 09:12
von ansev
Danke für deinen Vorschlag!
Leider bleibt der Zeilenabstand immernoch kleiner, egal ob ich \small{kleiner Text}, {\small kleiner Text} oder begin{small}... \end{small} nehme.
Hat vllt. noch jemand einen Vorschlag dazu??? Danke

Verfasst: Di 6. Mär 2012, 09:53
von rais
Hallo,
ansev hat geschrieben:Leider bleibt der Zeilenabstand immernoch kleiner, egal ob ich \small{kleiner Text}, {\small kleiner Text} oder begin{small}... \end{small} nehme.
Hat vllt. noch jemand einen Vorschlag dazu???
...been equivocal.

{\small
- Tabelle -
}
also erst den Absatz vor \small beenden.

MfG
Rainer

Verfasst: Di 6. Mär 2012, 10:27
von ansev
Ja, super. Das funktioniert. Aber was ist, wenn die Tabelle mitten im Text steht und ich an der Stelle gar keinen Absatz haben möchte?