是否可以使用纸张宽度作为变量来设置导入图形的宽度?例如,当我希望图片大小为纸张宽度减去 3 厘米或纸张宽度的一半等时。
答案1
答案很简单,使用\textwidth
并做你想做的事。当然,纸张宽度是指文本块宽度,而不是纸张本身,在这种情况下,您可以使用\paperwidth
。
\includegraphics[width=\textwidth-5cm]{./Images/MyImage}
\includegraphics[width=\paperwidth]{./Images/MyImage}
\includegraphics[width=2\textheight]{./Images/MyImage}
\includegraphics[height=\marginparwidth]{./Images/MyImage}
您可以使用pt
或inch
或em
...等,代替cm
。
參閱http://en.wikibooks.org/wiki/LaTeX/Page_Layout#Page_dimensions了解有用的页面尺寸命令。