答案1
嗯,因为你没有给我们 MWE,所以你的问题不是很清楚。因为我们不知道你使用的是 KOMA-Script 类还是其他标准类,article
我只是猜测你使用的是类article
。然后你可以使用包fancyhdr
为文档的每一页创建页眉和页脚。请注意,如果你使用 KOMA-Script,情况会发生变化……
为了能够使用命令为特殊页面使用特殊的页眉-页脚组合,\thispagestyle{copyright}
您需要定义copyright
如下样式:
\fancypagestyle{copyright}{%
\fancyhf{} % empty header and footer
\fancyfoot{%
\centering
\textbf{Gujrat Institute of Management Sciences}\\
\textbf{PMAS-Arid Agriculture University, Rawalpindi}\\
\thepage\\
\raggedright\footnotesize
\textcopyright\ Gujrat Institute of Management Sciences\\
PMAS-Arid Agriculture University, Rawalpindi\\
\rule{\textwidth}{0.5pt}%
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
}
}
由于您的问题不是很清楚,您是否真的需要图像中显示的所有线条,因此我只是添加了所有线条。\fancyfoot
根据需要更改命令的内容...在下面的 MWE 中,我添加了包showframe
以可视化使用的打字区域和边距。请注意,在第 2 页上,使用您的copyright
样式,页脚也会更改页码的位置。
使用此 MWE(请参阅标有 的重要代码<=====
):
\documentclass{article}
\usepackage{showframe} % <================ to visualize typing area and margins
\usepackage{blindtext} % <================ adding dummy text into document
\usepackage{fancyhdr}
\fancypagestyle{copyright}{%
\fancyhf{} % empty header and footer
\fancyfoot{%
\centering
\textbf{Gujrat Institute of Management Sciences}\\
\textbf{PMAS-Arid Agriculture University, Rawalpindi}\\
\thepage\\
\raggedright\footnotesize
\textcopyright\ Gujrat Institute of Management Sciences\\
PMAS-Arid Agriculture University, Rawalpindi\\
\rule{\textwidth}{0.5pt}%
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
}
}
\pagestyle{fancy}
\begin{document}
\blindtext
\clearpage % <======================= new page 2
\thispagestyle{copyright} % <======== style copyright only used on this page 2!
\blindtext
\clearpage % <======================= new page 3 with standard style fancy
\blindtext
\end{document}
您将获得以下页面:
如果这不是您所需要的,请注册您的帐户并编辑您的问题,添加更多信息以更好地解释您的问题......