我正在嘗試將兩個圖像和一些文字放入文檔頁腳中,所有這些都與頁碼並排對齊,如下所示:
我可以使用 fancyhdr 來了解基礎知識,但它似乎不能按預期工作。我是 LaTeX 的初學者,所以我很難適應我所看到的一些答案,這些答案涵蓋並排的數字或對齊頁腳中的文字和數字:
\documentclass[onecolumn]{article}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{lipsum}
\pagestyle{fancy}
\fancyhf{}
\lfoot{\includegraphics[scale=0.3]{example-image} \includegraphics[scale=0.15]{example-image} Some text to go in the footer}
\rfoot{\thepage}
\begin{document}
\lipsum
\end{document}
我知道我可以使用 解決頁腳限制footskip
,但我不知道如何確保所有項目並排放置並在頁腳中正確對齊。
謝謝,
貝納多
答案1
Some thing like this?
\documentclass[onecolumn]{article}
\usepackage{fancyhdr}
\usepackage[export]{adjustbox}
\usepackage{lipsum}
\pagestyle{fancy}
\fancyhf{}
\lfoot{\includegraphics[scale=0.3,valign=c]{example-image}
\includegraphics[scale=0.15,valign=c]{example-image}
Some text to go in the footer}
\rfoot{\thepage}
\begin{document}
\lipsum
\end{document}
或這個
\documentclass[onecolumn]{article}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{lipsum}
\pagestyle{fancy}
\fancyhf{}
\lfoot{%
\begin{minipage}{\textwidth}
\parbox{0.23\linewidth}{\includegraphics[width=\linewidth]{example-image}}\hfill
\parbox{0.23\linewidth}{\includegraphics[width=0.5\linewidth]{example-image}}\hfill
\parbox{0.46\linewidth}{Some text to go in the footer Some text to go in the footer}\hfill
\parbox{0.02\linewidth}{\raggedleft \thepage}%
\end{minipage}
}
\begin{document}
\lipsum
\end{document}
答案2
不知道紅色框是符號的一部分還是頁腳本身(我認為是後者)。我將文字放入 a 中\parbox
,在 周圍添加了一些垂直緩衝區\fbox
,然後將頁腳中的項目隔開。
如果您需要文字和頁碼周圍的實際框,請告訴我。
\documentclass[onecolumn]{article}
\usepackage{stackengine,xcolor}
\fboxrule=2pt
\newcommand\cincludegraphics[2][]{%
\setbox0=\hbox{\includegraphics[#1]{#2}}%
\abovebaseline[-.5\ht0]{\includegraphics[#1]{#2}}}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{lipsum}
\pagestyle{fancy}
\fancyhf{}
\lfoot{\textcolor{red}{\addstackgap[3pt]{\fbox{\color{black}
\makebox[\dimexpr\textwidth-2\fboxsep-2\fboxrule\relax]{%
\cincludegraphics[scale=0.3]{example-image}\hfil
\cincludegraphics[scale=0.15]{example-image}\hfil
\parbox[c]{1in}{Some text to go in the footer}\hfil
}}}}}
\rfoot{\thepage~}
\begin{document}
\lipsum
\end{document}