如何使用属性来改变颜色

如何使用属性来改变颜色

LuaTeX定义attributes

考虑以下代码片段(用 进行编译luatex):

\documentclass{article}
\newattribute\testattr
\usepackage{xcolor}
\colorlet{color1}{red}
\colorlet{color2}{blue}

\begin{document}

Test \setattribute\testattr{1} Test1 \setattribute\testattr{2} Test2

\end{document}

我如何使用属性值\testattr使其Test1呈现红色和Test2蓝色?

相关内容