ドキュメントのフッターに、ページ番号と並べて配置した 2 つの画像とテキストを配置しようとしています。次のようになります。
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
赤いボックスが表記の一部なのか、フッター自体なのかわかりませんでした (後者だと想定しました)。テキストを に配置し\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}