我有一个文档,在第一页上有一个 \tableofcontents,当我在这个页面中添加页眉时,页眉中也会出现“内容”字样,如何避免在页眉中出现“内容”字样?
附言:“Содержание”表示“内容”
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}
\usepackage{tabu}
\fancypagestyle{firstpage}
{
\rhead{
\begin{tabu} to \textwidth { | X[0.15,l,p] | X[0.3,l,p] | X[0.3,l,p] | X[0.3,l,p] | }
\hline
\textbf{LOGO} & \multicolumn{3}{c}{ {{title}} } \\ \hline
& \textbf{ № УКД:} & \textbf{Версия:} & \textbf{Страница в документе:} \\ \hline
& & & \thepage \hspace{1mm} из \pageref{LastPage} \\ \hline
\end{tabu}
}
}
\begin{document}
\pagestyle{firstpage}
\vspace{1cm}
\tableofcontents
\section{\large \textbf{\textsc{Цель}}}
\section{\large \textbf{\textsc{Область применения}}}
\end{document}
答案1
第一次出现内容来自您的标题。您定义了rhead{}
,但您忘记将其定义\lhead{}
为空。
这个 MWE 可以满足您的要求:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tabu}
\usepackage{fancyhdr}
\fancypagestyle{firstpage}
{
\rhead{
\begin{tabu} to \textwidth { | X[0.15,l,p] | X[0.3,l,p] | X[0.3,l,p] | X[0.3,l,p] | }
\hline
\textbf{LOGO} & \multicolumn{3}{c}{ {{title}} } \\ \hline
& \textbf{ № УКД:} & \textbf{Версия:} & \textbf{Страница в документе:} \\ \hline
& & & \thepage \hspace{1mm} из \pageref{LastPage} \\ \hline
\end{tabu}
}
\lhead{}
}
\begin{document}
\pagestyle{firstpage}
\vspace{1cm}
\tableofcontents
\section{\large \textbf{\textsc{Цель}}}
\section{\large \textbf{\textsc{Область применения}}}
\end{document}