在每页开头打印当前部分

在每页开头打印当前部分

我正在使用以下序言制作简历:

\documentclass[letter,12pt]{article}
\usepackage{fancyhdr}

% Author: Timmy Chan
% MARGINS AND SPACING
\RequirePackage[margin=1in, top=1in, bottom=1in]{geometry} % Set Margins
\raggedright % left align no indent
\raggedbottom % top align no indent

% COLOR
\RequirePackage{xcolor}
\definecolor{highlight}{RGB}{61, 90, 128} % CHANGE THIS TO YOUR FAV COLOR https://g.co/kgs/aoqdi7

% BULLET POINTS
\RequirePackage[inline]{enumitem}
\setlength{\tabcolsep}{0in}

% SECTION FORMATTING 
\RequirePackage[nostruts]{titlesec}
\titlespacing*{\section}{0em}{0.5em}{0em}
\titleformat{\section}{\color{highlight} \scshape \raggedright \large}{}{0em}{}[\vspace{-0.75em}\hrulefill]

% SUBSECTION FORMATTING
\titlespacing*{\subsection}{0em}{0em}{0em}
\titleformat{\subsection}{\bfseries}{}{0em}{}[]

% BOLD COMMAND
\newcommand{\skills}[1]{ {\bfseries #1}}

% SUBTEXT
\newcommand{\subtext}[1]{\textit{#1}\par\vspace{-.75em}}

% _____________________________Page Style_________________________________
\setlength{\parindent}{0cm} % Removes all indentation
\pagestyle{fancy} 
\fancyhf{}
\renewcommand{\footrulewidth}{0.5pt}
\rfoot{\thepage}

% _________________________________Header_________________________________
\fancyhead[L]{{\bf Name} \\ LinkedIn Profile \\ City, State, Zip code}
\fancyhead[R]{Email \\ Phone Number}

我希望当前部分自动打印在每个新页面的开头,就像使用\newpageand\section{}命令一样。

但是,这应该只打印,而不能以\section任何方式使用命令:我不希望命令\section“隐藏”。这是因为在查看pdf时,每次\section使用命令时,都可以在pdf的页面结构中查看它,并且我不希望在pdf的页面结构中多次重复相同的部分。

另外,请注意在序言中添加以下代码后

% __________________________________Body___________________________________
\begin{document}

\section{Introduction}

\end{document}

并且编译时,标题会干扰第一行的文本。我可以通过\hfill在每个页面开头使用命令来解决这个问题。有没有更合适的方法解决这个问题?(也不会丢失任何空间)下面是没有 时的样子\hfill

在此处输入图片描述

\hfill

% __________________________________Body___________________________________
\begin{document}

\hfill
\section{Introduction}

\end{document}

在此处输入图片描述

相关内容