我想要一个包含一些行的框(或小页面),使其具有特定的高度。可以自动添加垂直空间以填充行之间以调整高度。框必须尽可能靠近右边距。
我能够使用parbox
、\vfill
和来处理这种情况\hfill
。但是我必须使用最长的线和 来设置框的长度\wd
。
有没有办法让它更自动化?我没有机会使用,pbox
因为你不能\vfill
在那里使用。
\newsavebox\mybox
\sbox{\mybox}{[email protected]}
\newlength{\abc}
\setlength{\abc}{18mm}
%other box of height \abc
\hfill
\parbox[c][\abc][t]{\wd\mybox}{
\faMobile\space 123.456.789
\vfill
\faEnvelope\space [email protected]
\vfill
\faLocationArrow\space 123 liberty street
\vfill
\faCar\space driving license
\vfill
\faPassport\space working permit
\vfill
}