我正在尝试使用该类制作书籍封面bookcover
。问题是我无法使用阴影(我想使用的东西),它总是给出黑色背景,即使使用
用户手册
\documentclass[flapwidth=50mm,spinewidth=15mm]{bookcover}
\begin{document}
\begin{bookcover}
\bookcovercomponent{color}{bg whole without flaps}{
top color=white, bottom color=blue!50!black, shading angle=60}
\end{bookcover}
\end{document}
根据手册,没有必要手动包含tikz
和xcolor
打包,但即使这样做,我也会得到相同的结果。
有人能看到我做错什么吗?
答案1
答案2
此错误已修复版本 2.2
如果您使用 2.1 版本,那么下一个代码也适用于 xelatex、lualatex 和 pdflatex:
\documentclass[flapwidth=50mm,spinewidth=15mm]{bookcover}
\begin{document}
\makeatletter\TP@absposfalse\makeatother\newgeometry{left=0em,top=-1em} % fixing code
\begin{bookcover}
\bookcovercomponent{color}{bg whole without flaps}{
top color=white, bottom color=blue!50!black, shading angle=60}
\end{bookcover}
\end{document}