我想在 pdfLaTeX 中创建页脚。脚注应如下所示:
左侧应显示当前页码,中间显示描述,右侧显示图像。
到目前为止我尝试了以下操作:
\usepackage{fancyhdr}
...
\lfoot{\thepage}
\cfoot{some kind of description}
\rfoot{\includegraphics{pictures//image1}}
但我不知道如何让背景变色。有什么建议吗?:)
答案1
使用
\cfoot{%
\colorbox{yellow}{%
\makebox[\linewidth]{\thepage\hfill some description \includegraphics{..}}%
}%
}