我试图将章节标题放在图形高度的垂直中心。我的代码如下:
\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}}