Graphics, Figures & TablesLandscape Format with Caption

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
pointeddot
Posts: 11
Joined: Thu Jun 27, 2013 1:16 am

Landscape Format with Caption

Post by pointeddot »

Hey guys,

I hope someone here can help we with my problem.

I am trying to have a table in landscape format. My problem is, that I need the table in tiny letters and I need a caption of the table. The thing is that, when I try to get a caption, the tiny font size will not be kept.

My code looks like this:

Code: Select all

\begin{landscape}
\newpage
\begin{tiny}

\begin{table}[hb]
\begin{tabular}{|p{1.6cm}| p{0.7cm} | p{1.8cm} | p{1.5cm} | p{3cm} | p{2cm} | p{2cm} | p{2cm} | p{2cm} | p{2cm}|}
\hline
\textbf{Autor(en)} & \textbf{Jahr} & \textbf{Maschinenfall} & \textbf{linear/nicht-linear} & \textbf{Ziele} & \textbf{Bevorrechtigung} & \textbf{stetig/diskret} & \textbf{Rüstzeiten/-kosten} & \textbf{Maschinenausfall} & \textbf{Modellart} \\ \hline
\citeauthor{Jansen20041565} & \citeyear{Jansen20041565}  & parallel & linear &P1-P3 &ja + nein & stetig &nein & nein & mathenatisches Modell + ALgorithmus \\ \hline
\citeauthor{Jansen2005297} & \citeyear{Jansen2005297} & Job-Shop & linear &P1-P3 & ja + nein & stetig + diskret & nein & nein & mathematisches Modell + Algorithmen \\ \hline
\citeauthor{Gurel20072774} & \citeyear{Gurel20072774} & parallel & nicht-linear & Minimierung der Gesamtdurchlaufzeit + Fertigungskosten (...) & nein & stetig & nein & nein & mathematische Modelle + Algorithmus \\ \hline
\citeauthor{daub1994ablaufplanung} & \citeyear{daub1994ablaufplanung} & Job-Shop & linear & Minimierung der Gesamtdurchlaufzeit + Beschleunigungskosten & nein &stetig + diskret & nein & nein & mathematische Modelle \\ \hline
\citeauthor{Leyvand2010} & \citeyear{Leyvand2010} &parallel & linear + nicht-linear & Maximierung der Aufträge, die am Fälligkeitsdatum fertiggestellt werden + Minimierung des Ressourcenverbrauches & nein & stetig & nein & nein & Algorithmen \\ \hline

\end{tabular}
\caption{Darstellung der Parameter zur Berechnung des Algorithmuses}\label{tab:4}
\end{table}

\end{tiny}
\end{landscape}
Thank you a lot! I really do appreciate your help..
Last edited by localghost on Thu Sep 26, 2013 7:06 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Landscape Format with Caption

Post by localghost »

The font size switch \tiny has to go into the {table} environment.

And perhaps you want to read why tiny is not an environment. Furthermore a look into the booktabs manual for good looking tables can't do any harm.


Thorsten
Post Reply