I would like to include some longtables and deluxetables in my PhD thesis written with classicthesis, but I find two problems:
- The
deluxetableis not floating. - The
longtableis truncated on the left side if I use the portrait visualization and on the top if I use the landscape.
An example of the code in the case of the landscape
\begin{landscape}
\begin{longtable}{lclrrrrrrrrcl}
%%%%
\end{longtable}
\end{landscape}
This is an example of my deluxetable:
\clearpage
\section{Cap.~\ref{cap: c1} Tables}
\begin{deluxetable}{llrrcll}
%%%%
\end{deluxetable}
The heading of my main source file:
\usepackage[T1]{fontenc}
\usepackage[applemac]{inputenc}
\usepackage[english,italian]{babel} % per scrivere in italiano e in inglese;
\usepackage{indentfirst}
\usepackage{amsmath,amssymb,amsthm} % indispensabili per la matematica
\usepackage[english]{varioref} % riferimenti completi della pagina
\usepackage{deluxetable}
\usepackage{aalongtable}
\usepackage{lscape}
\usepackage{gensymb}
\usepackage[style=philosophy-modern,hyperref,backref,square]{biblatex}
\bibliography{mnemonic,phd_thesis_bib}
\usepackage[babel]{csquotes} % consigliato se si usa biblatex
\usepackage[tight,english]{minitoc} % per fare i miniindici
\usepackage{chngpage,calc}
\usepackage{subfig} % sottofigure, sottotabelle
\usepackage{classicthesis-ldpkg}
\usepackage[eulerchapternumbers,% % numeri dei capitoli in Euler
subfig,% % compatibilit‡ con subfig
beramono,% % Bera Mono come font a spaziatura fissa
eulermath,% % AMS Euler come font per la matematica
pdfspacing% % migliora il riempimento di riga con PDFLaTeX
]{classicthesis} % lo stile ClassicThesis
\usepackage[english]{arsclassica} % modifica alcuni aspetti di ClassicThesis
\usepackage{tesi} % un pacchetto personale:
Any suggestion to overcome this problem?
I thought that if I may enlarge the margins only for the pages including the table it would work...but any other method would be very appreciated.
deluxetables should float by default. Are you using something like[h]or alike? If thelongtableis cropped, it seems to be too big. I would try to reformat the table or to use asidewaystable. It will not look nice, if you change the margin for some pages. – LaRiFaRi Oct 22 '14 at 10:52