Considere o seguinte MWE
\documentclass[a4paper,twoside]{article}
\usepackage[width=14cm,left=3.5cm,marginparwidth=3cm,marginparsep=0.35cm,
height=21cm,top=3.7cm,headsep=1cm,headheight=1.6cm,footskip=1.7cm,showframe]{geometry}
\usepackage[pagestyles,outermarks]{titlesec}
\newpagestyle{foo}{%
\headrule\sethead
[\thepage][][{\includegraphics[height=1.5cm]{foo.jpg}}]
{{\includegraphics[height=1.5cm]{foo.jpg}}}{}{\thepage}
\footrule
\setfoot
{}{\includegraphics[height=1cm,width=\textwidth]{bar.jpg}}{}
}
\pagestyle{foo}
\usepackage[demo]{graphicx}
\usepackage{lipsum}
\begin{document}
\lipsum[1-5]
\end{document}
A imagem no rodapé se sobrepõe à footrule
e portanto esta última não é mostrada como pode ser visto na imagem a seguir:
Como posso consertar isso? De forma mais geral, existe uma maneira de aumentar footheight
ao usar o pacote de geometria? (Posso aumentar a altura da cabeça com a headheight
opção mas a altura do pé parece fixa, como pode ser visto na próxima imagem).
Responder1
Você pode diminuir a imagem usando\raisebox
\raisebox{-1cm}{\includegraphics[height=1cm,width=\textwidth]{bar.jpg}}
Código:
\documentclass[a4paper,twoside]{article}
\usepackage[width=14cm,left=3.5cm,marginparwidth=3cm,marginparsep=0.35cm,
height=21cm,top=3.7cm,headsep=1cm,headheight=1.6cm,footskip=2cm,showframe]{geometry}
\usepackage[pagestyles,outermarks]{titlesec}
\newpagestyle{foo}{%
\headrule\sethead
[\thepage][][{\includegraphics[height=1.5cm]{foo.jpg}}]
{{\includegraphics[height=1.5cm]{foo.jpg}}}{}{\thepage}
\footrule
\setfoot
{}{\raisebox{-1cm}{\includegraphics[height=1cm,width=\textwidth]{bar.jpg}}}{}
}
\pagestyle{foo}
\usepackage[demo]{graphicx}
\usepackage{lipsum}
\begin{document}
\lipsum[1-5]
\end{document}
Em vez de codificação rígida 1cm
, você pode usar \height
como
\raisebox{-0.8\height}{\includegraphics[height=1cm,width=\textwidth]{bar.jpg}}
Com fancyhdr
, as coisas parecem legais.
\documentclass[a4paper,twoside]{article}
\usepackage[width=14cm,left=3.5cm,marginparwidth=3cm,marginparsep=0.35cm,
height=21cm,top=3.7cm,headsep=1cm,headheight=1.6cm,footskip=2cm,showframe]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}{%
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[RE,LO]{\includegraphics[height=1.5cm]{foo.jpg}}
\fancyfoot[C]{\includegraphics[height=1cm,width=\textwidth]{bar.jpg}}
\renewcommand{\footrulewidth}{0.5pt}
\usepackage[demo]{graphicx}
\usepackage{lipsum}
\begin{document}
\lipsum[1-5]
\end{document}