Hi Herbert/all
On Wed, 14 Jun 2000, Herbert Voss wrote:
> > I can't find the sidewaystable package anywhere on ctan.
>
> it's part of package rotating.
> try \usepackage{rotating} in latex preamble if it might be on your
> system or have a look at
> /usr/share/texmf/tex/latex/misc
> for rotating.sty
>
> if you have problems, drop me a line and i'll send you
> this file.
>
> Herbert
Any ideas why the attached file puts the table down near the bottom right
hand edge of the page actually off the page?
Using \begin{table}...\end{table} puts it in the centre, whereas
\begin{sidewaystable}... gives the above effect :-(
BTW, the table I want to rotate in my main document (not the test) is a
float, does this make any difference?
Yours desparately,
Duncan
\documentclass[12pt]{report}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=25mm,bmargin=25mm,lmargin=40mm,rmargin=25mm}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\setlength\parskip{\medskipamount}
\setlength\parindent{0pt}
\usepackage{graphics}
\usepackage{setspace}
\onehalfspacing
\usepackage{rotating}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\providecommand{\LyX}{L\kern-.1667em\lower.25em\hbox{Y}\kern-.125emX\@}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\sloppy
\begin{document}
\begin{sidewaystable}
\begin{center}
\begin{tabular}{|c|c|}
\scriptsize{Hello}
\scriptsize{world!}
\end{tabular}
\end{center}
\end{sidewaystable}
\end{document}