页面顶部的图片

页面顶部的图片

我正在尝试根据页边距定义将图像固定在页面顶部。这是会议论文的徽标,因此它必须位于第一页的顶部。我该怎么做?感谢您的关注!

尼科洛

答案1

尊重 tcassanelli 的回答,请注意,您可以定义多个标题样式并在它们之间进行更改。

要创建新样式:

\fancypagestyle{mystyle}{% 
  %definition here
 }

在实际的页面中只使用上面的样式:

\thispagestyle{mystyle}

但如果您只想在第一页显示徽标,另一个选择可能是包装wallpaper。这样,徽标就不会占用空间,因此文档中任何其他对象的位置保持不变。一个最小的工作示例:

平均能量损失

\documentclass[a4paper,latin]{article} 
\usepackage{wallpaper}
\usepackage{babel} 
\usepackage{lipsum} % dummy text
\title{Minimum exemplum laborandi}
\author{Franciscus Studiosum Somniantis} 

\begin{document}

\addtolength{\wpXoffset}{-7cm} 
\addtolength{\wpYoffset}{12cm} 
\ThisCenterWallPaper{.15}{logo}

\maketitle 

\section{Introductio} 
\lipsum[1]
\section{Materia et modos} 
\lipsum[2] 
\section{Consequitur} 
\lipsum[3]
\section{Disputatio} 
\lipsum[4] 
\end{document}

答案2

您尝试过 Fancy 套餐吗?

%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{fancyhdr} % Custom headers and footers
\pagestyle{fancyplain} % Makes all pages in the document conform to the custom headers and footers
\fancyhead[L]{}%\leftmark
\fancyhead[R]{\includegraphics{image}}%You could place here the image. 
\fancyfoot[L]{} % Empty left footer
\fancyfoot[C]{} % Empty center footer
\fancyfoot[R]{\thepage} % Page numbering for right footer
%%%%%%%%%%%%%%%%%%%%%%%%%%%

答案3

内容如下:

    \fancypagestyle{mystyle}{% 
    \thispagestyle{empty}
    \pagestyle{fancy} % Makes all pages in the document conform to the custom headers and                               footers
   \renewcommand{\headrulewidth}{0pt}
   \fancyhead[L]{}%\leftmark
   \fancyhead[R]{\includegraphics{logo}}%You could place here the image. 
   }

头部没问题,问题是文本底部不符合边距。我是这样定义的:

\usepackage{geometry}
\geometry{a4paper,top=2.5cm,bottom=2.5cm,left=2.5cm,right=2.5cm}
\setlength\parindent{1cm}

相关内容