带有 fancyhdr 的标题中的负 vSpace

带有 fancyhdr 的标题中的负 vSpace

我试图将章节标题放在图形高度的垂直中心。我的代码如下:

\rhead{\includegraphics[width=1.25cm]{Figures/logo_without_name.png} \vspace*{-0.25cm}\rightmark}

这导致以下结果: 目前情况

我想要的章节名称显示如下: 想要的结果

提前致谢!

更新:

按照要求的 MWE(感谢提示!):

\documentclass{article}
\usepackage{graphicx}
\usepackage[utf8x]{inputenc}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{1pt}
    \rhead{\includegraphics[width=1.25cm]{example.png} \vspace* \rightmark}
\begin{document} 
Lorem Ipsum
\end{document}

答案1

解决方案

正如 Schweinebacke 建议我的那样,我使用了它\raisebox并且它完美地运行:

\rhead{\includegraphics[width=1.25cm]{Figures/logo_without_name.png} \raisebox{0.5cm}[0cm][0cm]{\rightmark}}

相关内容