我使用 overleaf 编写 latex 文档。我想为我的 latex 文档添加装饰。所以,我读了这篇文章,
https://ctan.math.illinois.edu/macros/latex/contrib/tkz/pgfornament/doc/ornaments.pdf
但问题是它们都不起作用。我只使用了到第 9 页为止的命令。我认为还需要一些其他的东西才能让这些装饰品亮起来。我还没有将其上传到 overleaf 。我应该怎么做才能利用这些装饰品?
答案1
\usepackage[dvipsnames]{xcolor}
为了让示例编译时不出现错误,我必须添加,请参阅在 xcolor 中创建新颜色以用于列表。问题似乎是OliveGreen
LaTeX 无法识别的颜色。
\documentclass{scrartcl}
\usepackage[dvipsnames]{xcolor}
\usepackage{pgfornament}
\begin{document}
\pgfornament[width = 2cm, color = red]{1}
\begin{tikzpicture}
\tikzset{pgfornamentstyle/.style = {fill = SpringGreen, fill opacity = 0.5, line width = 1pt}}%
\pgfornament[color = OliveGreen, scale=1.25, anchor=south]{24}%
% Alternatively
% \pgfornament[color = blue, scale=1.25, anchor=south]{24}%
\end{tikzpicture}
\end{document}
PS:顺便说一下,下次请提供一些代码和问题,看看我刚刚被要求写一个最小工作示例(MWE),那是什么?