我已经在页面上搜索了如何在纸上移动一个框,但没有找到答案。
如果纸张的左下角位于 (0,0) (x, y)。我有以下脚本:
\begin{tabular}{lrr}
Reinforcement(A)&Concrete(B)&slab formwork(D)\\ \hline \\
kg & m3 & m2 \\
B-man hours & B man hours & B man-hours \\
blah blah & blah blah & blah blah \\
\end{tabular}
盒子必须以 (10cm, 10cm) 为起点
但是如何呢?
答案1
如果您使用 0 尺寸的图片模式,那么很容易将表格设置为相对于图片模式的原点 (10,10),将图片模式定位在页面边缘会更复杂一些,因为您必须考虑通常的边距和偏移量。
\documentclass[a4paper]{article}
\begin{document}
\setlength\unitlength{1cm}
\noindent\vbox to 0pt{%
\vspace{\dimexpr \paperheight-\topskip-\topmargin-1in
-\headheight-\headsep}
\noindent\hspace*{\dimexpr-\oddsidemargin-1in}%
\begin{picture}(0,0)
\thicklines\linethickness{5pt}
\put(10,10){%
\begin{tabular}[b]{lrr}
Reinforcement(A)&Concrete(B)&slab formwork(D)\\ \hline \\
kg & m3 & m2 \\
B-man hours & B man hours & B man-hours \\
blah blah & blah blah & blah blah \\
\end{tabular}}
\put(0,0){\line(1,0){10}}
\put(0,0){\line(0,1){10}}
\put(0,0){\line(1,1){10}}
\end{picture}
\vss}
\end{document}