如何才能使颜色框具有与所包含图像相同的高度,而不在图像的顶部或底部添加任何空间?
这是我目前正在使用的代码。
\fancyfoot[RE,RO]{\hspace*{-0.2\headwidth}\setlength{\fboxsep}{0pt}\colorbox{gray}{% \setlength{\fboxsep}{0pt}\makebox[\dimexpr0.2\headwidth-2\fboxsep][c]{% \strut \includegraphics[width=0.05\textwidth,keepaspectratio]{./LogoShort}}}% \colorbox{gray}{\makebox[\dimexpr0.98\headwidth-2\fboxsep][l]{\strut ORGGroup}}% \colorbox{gray}{\makebox[\dimexpr0.22\headwidth-2\fboxsep][l]{\strut \thepage}}}
答案1
你有
\strut \includegraphics
A\strut
具有最大高度和深度当前字体大小的文本,因此您要框住位于基线图像下方的内容。只需删除\strut
。