本文主要是介绍latex 表格 图片超宽,旋转放置方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题
论文边距太大,图片表格超宽,想旋转页面,或者旋转图片与表格。
页面旋转
使用 \begin{landscape}
旋转页面,图片没有旋转,只是这一页变成横向。
\begin{landscape}
\begin{table}[htbp]
\centering
\includegraphics[scale=0.6]{beecy.pdf}
\caption{xxx.}
\label{fig:1}
\end{figure}
\end{landscape}
旋转图片
使用 \begin{sidewaysfigure}
把图片旋转 90度,注意页面没有旋转,仍是纵向。
\begin{sidewaysfigure}\centering\includegraphics{image}\caption{caption}\label{fig:label}
\end{sidewaysfigure}
旋转表格
使用 \begin{sidewaystable}
把 表格旋转,注意页面没有旋转。
\begin{sidewaystable}
\centering
\begin{tabular}{|l|}
\hline
A \\
\hline
a \\
\hline
\end{tabular}
\caption{Table 1}
\end{sidewaystable}
任意角度旋转
使用 \Rotatebox{90}
把表格旋转指定角度,注意使用 \usepackage[graphicx]{realboxes}
\documentclass{article}
\usepackage[graphicx]{realboxes}\begin{document}\Rotatebox{90}{%\begin{tabular}{ll}First First & First Second\\Second First & Second Second\end{tabular}
}%
\end{document}
- How to rotate a table?
这篇关于latex 表格 图片超宽,旋转放置方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!