底页-仅为第一页(而非所有页面)设置页眉

时间:2019-02-17 19:35:26

标签: latex

我只想为我的第一页设置标题。这在下页内。

我的尝试:

\fancyhead[L]{}

\fancyhead[R]{ \includegraphics[width=4cm]{logo.png}}

\renewcommand{\headrulewidth}{0pt}

此问题是,这将为所有页面设置页眉。

如何设置页眉仅适用于第一页而不适用于所有页面?

1 个答案:

答案 0 :(得分:1)

定义自定义样式。这里的名称为firstpage

\fancypagestyle{firstpage}
{
    \fancyhead[L]{}    
    \fancyhead[R]{ \includegraphics[width=4cm]{logo.png}}
}

然后在所需页面上使用它:

\thispagestyle{firstpage}