考慮以下 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}
頁腳中的影像與 重疊footrule
,因此後者不會顯示,如下圖所示:
我怎樣才能解決這個問題?更一般地說,有沒有辦法footheight
在使用幾何套件時增加? (我可以使用該選項來增加頭部高度headheight
,但腳部高度似乎是固定的,如下圖所示)。
答案1
您可以使用降低圖片\raisebox
\raisebox{-1cm}{\includegraphics[height=1cm,width=\textwidth]{bar.jpg}}
代碼:
\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}
1cm
您可以使用\height
類似的方法來取代硬編碼
\raisebox{-0.8\height}{\includegraphics[height=1cm,width=\textwidth]{bar.jpg}}
有了fancyhdr
,事情看起來很整潔。
\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}