我想在海报上添加标题

我想在海报上添加标题

我正在为一个会议制作海报,我需要将一张图片作为标题。问题是我无法限制图片的边距,我不知道该怎么做。

这是我的代码:

\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\setlength\headheight{80.0pt}
\addtolength{\textheight}{-80.0pt}
\chead{\includegraphics[width=\textheight]{RCI_Header.png}}

\begin{document}
\thispagestyle{fancy}

第一张图片是我得到的,第二张图片是我想要的。

先感谢您。 这就是我得到的这就是我要的

答案1

此解决方案不保留纵横比。另外,似乎 fancyhdr\strut在标题中包含了,因此\raisebox

\documentclass{article}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{showframe}% debugging tool

\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\textheight}{\dimexpr \headheight-80pt}
\setlength{\headheight}{80pt}
\chead{\raisebox{-\dp\strutbox}{\includegraphics[width=\textwidth,height=80pt]{example-image}}}

\begin{document}
\thispagestyle{fancy}
\centerline{this page intentionally left blank}
\end{document}

相关内容