照着lshort的6.3 使用颜色想自定义颜色名称,但一直报错
这是我的代码
\documentclass[twocolumn]{ctexart}
\usepackage{color}
\begin{document}
\definecolor{mycolor}{rgb}{0,1,1}
\end{document}
至少这个代码在我这里能运行:
但还是建议一是你应该代码代码块进行提问,二是颜色定义建议放在导言区:
\documentclass[twocolumn]{ctexart}
\usepackage{color}
\definecolor{mycolor}{rgb}{0,1,1}
\begin{document}
\textcolor{mycolor}{测试自定义颜色}
\end{document}