将页脚中的图像与页脚中的文本对齐

将页脚中的图像与页脚中的文本对齐

我需要在论文页脚中添加我所在大学的徽标(.png 格式),但它与页脚中的文本不在同一水平。如何确保大学徽标与文本底部(我的论文标题和页码)对齐?

我使用以下源代码制作此页脚:

\documentclass[a4paper,11pt]{article}
\usepackage[left=30mm, right=30mm, bottom=30mm, top=30mm]{geometry}
\usepackage{graphicx}

\usepackage{fancyhdr}
\pagestyle{fancy}
\rfoot{\thepage}
\newcommand{\mytitle}{Thesis title}
\cfoot{\mytitle}
\lfoot{\includegraphics[width=2.29cm,height=0.6cm]{Logo.png}} 

\begin{document}
The content of my thesis goes here
\end{document}

这是上述代码的结果。我希望大学徽标的图像与页脚的其余部分对齐。因为正如您在图像上看到的,徽标的底部高于文本的底部。

感谢你们对我的帮助!

在此处输入图片描述

答案1

由于我无法编译你的代码,我不确定这是你想要的,但你可以尝试替换

\lfoot{\includegraphics[width=2.29cm,height=0.6cm]{img/Logo.png}}

\lfoot{\vtop{\vskip-.5ex\hbox{\includegraphics[width=2.29cm]{img/Logo.png}}}}

相关内容