I am trying to put in a multi-page sideways table, using Texnic Center and Miktex. I have read various posts on how this can be accomplished using longtable and supertabular. I am only able to download the supertabular package through Miktex, so this is what I am attempting to use. To make it a landscape table I have been using the \begin{landscape} command before the \begin{supertabular} command, as the sidewaystable package does not seem to work with a table over multiple pages.
I have an error message which reads:
"!Latex Error: Option clash for package graphicx."
which has appeared since I added the \usepackage{isorot} so that I could use the landscape command. I could not find any lscape pakage on the ctan repository through Miktex to use as an alternative.
If anyone has any ideas about this, I would be very grateful. I do not even know if this error matters as the pdf still compiles - but I have a sneaking suspicion that if I ignore it it may cause problems elseware in my document. The document code is as follows, where the table is in the input 'A-engruns':
Code: Select all
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% HEADER
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[a4paper,10pt]{report}
%% Language %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[USenglish]{babel} %francais, polish, spanish, ...
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}
\usepackage{lmodern} %Type1-font for non-english texts and characters
\usepackage{supertabular}
\usepackage{isorot}
%% Packages for Graphics & Figures %%%%%%%%%%%%%%%%%%%%%%%%%%
%\usepackage{combinedgraphics}
\usepackage[dvips]{graphicx,color} %%For loading graphic files
\usepackage{subfigure} %%Subfigures inside a figure
%% Math Packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
%% Line Spacing %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{setspace}
\doublespacing %% 2-spacing
\sloppy
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=20mm,bmargin=20mm,lmargin=40mm,rmargin=20mm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% DOCUMENT
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\pagestyle{empty}
%% The simple version:
\title{A Novel Cryogenic Energy System for Zero Emission Vehicles}
\author{Henry Clarke}
%\date{} %%If commented, the current date is used.
\maketitle
\pagenumbering{roman}
\tableofcontents %Table of contents
%% The List of Figures
\clearpage
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
%% The List of Tables
\clearpage
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\pagenumbering{arabic}
\pagestyle{plain} %Now display headings: headings / fancy / ...
\input{Introduction}
\singlespacing
\input{A-engruns}
\end{document}