无法在文本中放置标题!

无法在文本中放置标题!

我正在尝试添加页眉,但似乎不知道该怎么做。我已经按照页眉排版说明操作,但无济于事。

我在谷歌上找到的所有资源都指向这样的内容

usepackage{fancyhdr}


\pagestyle{fancy}

\fancyhf{}

\rhead{Share\LaTeX}

\lhead{Guides and tutorials}

\rfoot{Page \thepage}

尽管我没有收到任何错误,但标题不会显示。我正在使用模板,问题可能就在那里。

结构如下:

\documentclass[a4paper,10pt]{article} % Default font size and paper size

\usepackage{fontspec} % For loading fonts
\defaultfontfeatures{Mapping=tex-text}
\setmainfont[SmallCapsFont = Fontin SmallCaps]{Fontin} % Main document font

\usepackage{xunicode,xltxtra,url,parskip} % Formatting packages

\usepackage[usenames,dvipsnames]{xcolor} % Required for specifying custom colors

\usepackage[big]{layaureo} % Margin formatting of the A4 page, an alternative to layaureo can be \usepackage{fullpage}
% To reduce the height of the top margin uncomment: \addtolength{\voffset}{-1.3cm}

\usepackage{hyperref} % Required for adding links   and customizing them
\definecolor{linkcolour}{rgb}{0,0.2,0.6} % Link color
\hypersetup{colorlinks,breaklinks,urlcolor=linkcolour,linkcolor=linkcolour} % Set link colors throughout the document

\usepackage{titlesec} % Used to customize the \section command
\titleformat{\section}{\Large\scshape\raggedright}{}{0em}{}[\titlerule] % Text formatting of sections
\titlespacing{\section}{0pt}{3pt}{3pt} % Spacing around sections

\usepackage{fancyhdr}

\pagestyle{fancy}
\fancyhf{}
\rhead{Share\LaTeX}
\lhead{Guides and tutorials}
\rfoot{Page \thepage}

\begin{document}

\pagestyle{empty} % Removes page numbering

\font\fb=''[cmr10]'' % Change the font of the \LaTeX command under the skills section

text

\end{document}

有任何想法吗?

答案1

代码

\pagestyle{fancy}
\fancyhf{}
\rhead{Share\LaTeX}
\lhead{Guides and tutorials}
\rfoot{Page \thepage}

应该在之后

\begin{document}

你应该删除

\pagestyle{empty} % Removes page numbering

因为它不仅删除了页码,还删除了 fancyhdr 中的所有内容。

相关内容