我想在文档的每个奇数页上插入徽标(但第一页除外),我知道如何对每一页执行此操作,但不知道如何仅在奇数页上执行此操作。所以我有
\makeatletter
\AddToShipoutPicture*{%
\setlength{\@tempdimb}{0.24\paperwidth}%
\setlength{\@tempdimc}{1.795\paperheight}%
\setlength{\unitlength}{0.5pt}%
\put(\strip@pt\@tempdimb,\strip@pt\@tempdimc){%
\includegraphics[width=0.25 \textwidth]{logo.eps}
}%
}
\makeatother
我想我的问题是我真的不知道如何在代码中放入“if”条件!有人能帮我吗?
答案1
此处正确的 if 语句是\ifodd\c@page ... \fi
。将\if
部分放在代码的第二行之后,并将\fi
部分放在结束之前}
。