提供一种思路
使用 magicwatermark
宏包, 并通过外部文件来添加页脚信息.
%pagefoot.txt
{faraday.jpg}{爱情既是友谊的代名词,又是我们为共同的事业而奋斗的可靠保证,爱情是人生的良伴,你和心爱的女子同床共眠是因为共同的理想把两颗心紧紧系在一起。\par \hfill ------ 法拉第}
{newton.jpg}{苹果砸了我的头,我成了物理学家。\par \hfill ------ 牛顿}
%main.tex
\documentclass{ctexart}
\usepackage[margin=2cm]{geometry}
\usepackage{graphicx}
\graphicspath{{figure/}}
\usepackage{fontawesome5}
\usepackage{magicwatermark}
\usepackage{zhlipsum}
\ExplSyntaxOn
\clist_clear_new:N \l_pagefoot_image_clist
\clist_clear_new:N \l_pagefoot_text_clist
\cs_new:Npn \pagefoot_add_content:nn #1#2 {
\clist_gput_right:Nn \l_pagefoot_image_clist { #1 }
\clist_gput_right:Nn \l_pagefoot_text_clist { #2 }
}
\ior_open:Nn \g_tmpa_ior { pagefoot.txt }
\ior_map_inline:Nn \g_tmpa_ior
{
\pagefoot_add_content:nn #1
}
\ior_close:N \g_tmpa_ior
\PageSetup*{
\begin{tikzpicture}[remember~picture,overlay]
\fill[red!25] ([xshift=1cm]current~page.south~west) rectangle ([yshift=3cm]current~page.south~east);
\fill[red!50] ([xshift=1cm,yshift=1cm]current~page.south~west) --++(0,2) -- ++(2,0)--cycle;
\fill[red!50] ([xshift=-2cm]current~page.south~east) -- ++(2,0) -- ++(0,2)--cycle;
\node[anchor=west] at ([shift={(1.2,1.5)}]current~page.south~west){\includegraphics[width=1.8cm,height=2.4cm]{\clist_item:Nn \l_pagefoot_image_clist{ \thepage }}};
\node[font=\bfseries,] at ([shift={(-0.5,0.5)}]current~page.south~east){\thepage};
\node[anchor=north~west] at ([shift={(3.5,2.8)}]current~page.south~west)
{
\begin{minipage}{\dimeval{\paperwidth-4.5cm}}
\textcolor{red!50}{\faBook}\hskip .5em\tikz[baseline]{\node[anchor=base,rounded~corners,fill=red!50,inner~sep=.3mm]{物理学史};}\hskip 1em \clist_item:Nn \l_pagefoot_text_clist { \thepage }
\end{minipage}
};
\end{tikzpicture}
}
\ExplSyntaxOff
\Watermark
\pagestyle{empty}
\begin{document}
\zhlipsum[1]
\newpage
\zhlipsum[2]
\end{document}
效果如下:
第一页
第二页
附件:
pagefoot.zip
问 我该如何实现随着页数变化的自定义页脚?