PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Nomenklaturprobleme - komisch zentriert



Kawaii
24-01-2008, 16:32
Hallo!

Hier mein Problem. Wenn ich den Quelltext durchlaufen lasse, ist die Nomenklatur leider nicht linksbündig, wie sie sein sollte, sondern irgendwo inner Mitte. Wisst ihr warum?
Danke

%Schriftgröße, Layout, Papierformat, Referenzen im Inhaltsverzeichnis(bibtotoc), Art des Dokumentes
\documentclass[12pt,oneside,a4paper,bibtotoc,includeheadfoot]{scrbook}

%Einstellungen der Seitenränder
\usepackage[left=3cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}

%Überbestimmungsproblemen vorbeugen
\usepackage{savesym}
\usepackage{amsmath}
\savesymbol{iint}

%Times New Roman
\usepackage{txfonts}
\restoresymbol{TXF}{iint}

%Mathepakete
\usepackage{amsfonts}
\usepackage{amssymb}

\usepackage{longtable}

%Eineinhalbzeilig ermöglichen
\usepackage{setspace}

%Kopf- und Fußzeile
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}

%Fußzeile mittig
\fancyfoot[C]{\thepage}
%Keine Linie oben
\renewcommand{\headrulewidth}{0pt}

\begin{document}

%Eineinhalbzeilig
\onehalfspacing

\chapter{Nomenclature}
\begin{longtable}{ll}
$ A $ & Surface area [$ m^2 $]\tabularnewline
$ C $ & Coefficient \tabularnewline
$ d $ & Diameter [$ m $]\tabularnewline
$ El $ & Entrance length number[$ - $]\tabularnewline
$ g $ & Acceleration due to gravity [$ \frac{m}{s^2} $]\tabularnewline
$ h $ & Height [$ m $]\tabularnewline
$ l $ & Length [$ m $]\tabularnewline
$ L $ & Characteristic length [$ m $]\tabularnewline
$ p $ & Pressure [$ \frac{N}{m^2} $]\tabularnewline
$ R $ & Gas constant [$ \frac{J}{kgK} $]\tabularnewline
$ Re $ & Reynolds number [$ - $]\tabularnewline
$ T $ & Temperature [$ K $]\tabularnewline
$ \dot{V} $ & Volume flow [$ \frac{m^3}{s} $]\tabularnewline
$ v $ & Velocity [$\frac{m}{s} $]\tabularnewline
$ w $ & Width [$ m $]\tabularnewline
$ \beta $ & Diameter ratio [$ - $]\tabularnewline
$ \Delta $ & Difference [$ - $]\tabularnewline
$ \lambda $ & Scaling factor [$ - $]\tabularnewline
$ \mu $ & Dynamic viscosity [$ \frac{kg}{ms} $]\tabularnewline
$ \nu $ & Kinematic viscosity [$ \frac{m^2}{s} $]\tabularnewline
$ \rho $ & Density [$ \frac{kg}{m^3} $]\tabularnewline
\tabularnewline
\large{\textbf{Subscript}}\tabularnewline
$ a $ & Atmospheric\tabularnewline
$ d $ & Drag\tabularnewline
$ e $ & Fully developed\tabularnewline
$ f $ & Fluid\tabularnewline
$ l $ & Length\tabularnewline
$ p $ & Particle\tabularnewline
$ s $ & Specific\tabularnewline
$ se $ & Sedimentation\tabularnewline
$ t $ & Time\tabularnewline
$ v $ & Velocity\tabularnewline
\end{longtable}


\end{document}

evil2106
24-01-2008, 16:50
hi,

das gleich prob hatte ich auch mit longtable. diese ist von hause aus nämlich zentriert.


\begin[l]{longtable}{ll}

das sollte helfen!

mfg
evil

Kawaii
24-01-2008, 20:28
Vielen Dank, aber es musst dann so aussehen

\begin{longtable}[l]{ll}

jetzt läufts richtig.