我可以使用回忆录在标题中放置一个图形吗?

我可以使用回忆录在标题中放置一个图形吗?

我试图将图像作为标题,但文本的第一行与图像重叠,因此我无法将其放在第一页。

在此处输入图片描述

按照我的命令:

\documentclass[article,11pt,twoside,a4paper,english,brazil,sumario=tradicional]{abntex2}
    \usepackage{lmodern}
    \usepackage[T1]{fontenc}
    \usepackage[utf8]{inputenc}
    \usepackage{indentfirst}
    \usepackage{nomencl}
    \usepackage{color}
    \usepackage{graphicx}
    \usepackage{microtype}

    \usepackage{lipsum}

\setulmarginsandblock{140pt}{\lowermargin}{*}   
\setheadfoot{5\baselineskip}{\footskip}         
\setheaderspaces{72pt}{*}{*}

\makepagestyle{mystyle}


\makeevenhead{mystyle}{}{\includegraphics[width=\textwidth]{figures/sober.png}}{} %% pagina par
\makeoddhead{mystyle}{}{\includegraphics[width=\textwidth]{figures/sober.png}}{}  %% pagina ímpar ou com oneside
\makeheadrule{mystyle}{\textwidth}{\normalrulethickness} 


\makeevenfoot{mystyle}{}{Campinas - SP, 29 de julho a 01 de agosto de 2018.\\ \textit{SOBER - Sociedade Brasileira de Economia, Adminstração e Sociologia Rural}}{}   
\makeoddfoot{mystyle}{}{Campinas - SP, 29 de julho a 01 de agosto de 2018.\\ \textit{SOBER - Sociedade Brasileira de Economia, Adminstração e Sociologia Rural}}{}  
\makefootrule{mystyle}{\textwidth}{\normalrulethickness}{1pt}  
\begin{document}
  \pretextual
   \pagestyle{mystyle}

\selectlanguage{brazil}

\frenchspacing 

\maketitle

\begin{abstract}

\singlespace
 \lipsum[1]

\end{abstract}


\textual
 \pagestyle{mystyle}

\lipsum[2]

\end{document}

我该如何纠正这种重叠。我还希望文本不要太靠近页脚(下图)。

在此处输入图片描述

这是图片标题:

https://www.dropbox.com/s/gb510qq3cbg7vl7/sober.png?dl=0

谢谢你!

答案1

我不知道这个abntex2类,但我从你的问题标题中假设它可能基于这个memoir类。默认页面布局为页眉和页脚分配一行。使用

\setheadfoot{<headheight>}{<footheight>}

来调整这些值。

正如@remco 所说记得打电话

\checkandfixthelayout

在所有布局更改之后,确保它们已实现并且相互兼容。

相关内容