I hope you could help me out with the following problem. I added some huge tables in the appendix of my thesis and used the rotation package to make them fit the pages. After creating these tables I found out that in the appendix blank pages were generated. When I was making a small working example (see below) for my problem I found out that by excluding the hyperref package the problem was solved. Excluding this package is not an option for me. Hopefully you guys could help me out. Just one minor thing: the syntax of the tables also need to stay the same because I need this for including colors into my matrices.
Thanks in advance,
Pieter
Code: Select all
\documentclass[10pt,fleqn,a4paper]{article}
\usepackage{amsmath,a4wide}
\usepackage{hyperref}
\usepackage{rotating}
\usepackage{colortbl}
\definecolor{lllgray}{gray}{0.5}
\definecolor{llgray}{gray}{0.9}
\begin{document}
\appendix
\section{TEST}
\begin{sideways}
\begin{minipage}{\textheight}
\begin{align*}
\begin{pmatrix}
\begin{tabular}{cc}
\multicolumn{1}{>{\columncolor{lllgray}}c}{ \tiny -6,87} & 0\\
4 & 1
\end{tabular}
\end{pmatrix}
\end{align*}
\end{minipage}
\end{sideways}
\section{TEST2}
\begin{sideways}
\begin{minipage}{\textheight}
\begin{align*}
\begin{pmatrix}
\begin{tabular}{cc}
\multicolumn{1}{>{\columncolor{lllgray}}c}{ \tiny -6,87} & 0\\
4 & 1
\end{tabular}
\end{pmatrix}
\end{align*}
\end{minipage}
\end{sideways}
\end{document}