我无法绘制sidewaystable
即使是简单的文档。我直接复制了此代码,可以将其绘制为普通表格。当我将其更改为横向时,它不起作用。有人有什么建议吗?这是我用于文件的代码.tex
:
\documentclass[a4paper]{article}
\usepackage{graphics}
\usepackage{rotating}
\begin{document}
\begin{sidewaystable}
\begin{tabular}{l*{6}{c}r}
Team & P & W & D & L & F & A & Pts \\
\hline
Manchester United & 6 & 4 & 0 & 2 & 10 & 5 & 12 \\
Celtic & 6 & 3 & 0 & 3 & 8 & 9 & 9 \\
Benfica & 6 & 2 & 1 & 3 & 7 & 8 & 7 \\
FC Copenhagen & 6 & 2 & 1 & 2 & 5 & 8 & 7 \\
\end{tabular}
\caption{This should be a sideways table}
\end{sidewaystable}
\end{document}
此代码将表格水平绘制,并在页面底角绘制一半。为什么它没有创建垂直表格?
是的——使用 pdflatex 可以解决问题。