需要帮助来设置我的包的 key-val 选项

需要帮助来设置我的包的 key-val 选项

我想为我的包使用 key-svalue 选项,我尝试使用 pgfopts 解决方案。必须能够 1) 使用例如加载包

\usepackage[colors=1]{mypack}

2)在用户代码的某个地方更改颜色,而不仅仅是在序言中,使用类似

\MPset{colors=2}

3)测试哪种颜色是活跃的。

在我的实际软件包中,还有 2 个与语言和消息有关的选项,因此 pgfopts 可能有点过头了。我很乐意接受任何 key-val 软件包的任何可行解决方案。

\ProvidesPackage{mypack}
\RequirePackage{%
xcolor,
pgfopts
}

\def\MPset#1{\pgfqkeys{/MP}{ /#1}}
\MPset{colors/.initial=2}
\MPset{colors/.is choice}
\MPset{colors/1/.code={\def\test{\textcolor{black}{TEST}}}}
\MPset{colors/2/.code={\def\test{\textcolor{red}{TEST}}}}
\MPset{colors/3/.code={\def\test{\textcolor{blue}{TEST}}}}

\ProcessPgfPackageOptions{/MP}
\endinput% mypack.sty

我在这个测试文档中使用 mypack

\documentclass{article}
%\usepackage[colors=1]{mypack}
\usepackage{mypack}
\MPset{colors=2}
\begin{document}
  :\pgfkeysvalueof{colors}:
  \test
\end{document}
\endinput

如果我装载我的背包

\usepackage[colors=1]{mypack}

我收到这个错误

! Package pgfkeys Error: I do not know the key '/MP/colors', to which you
  passed '1', and I am going to ignore it. Perhaps you misspelled it.

See the pgfkeys package documentation for explanation.
Type  H <return>  for immediate help.
 ...

l.16 \ProcessPgfPackageOptions{/MP}

如果我加载 mypack 时不带任何选项,它确实会编译,但是

\pgfkeysvalueof{colors}

是空的。当我取消注释时

\test

我得到了想要的彩色文本,但我仍然无法测试哪种颜色是有效的,

答案1

这是您的代码的更正版本:

\documentclass{article}
%------------------------------
\usepackage{filecontents}
\begin{filecontents*}{mypack.sty}
\ProvidesPackage{mypack}
\RequirePackage{%
xcolor,
pgfopts
}

\pgfkeys{/MP/.is family}
\def\MPset#1{\pgfkeys{/MP,#1}}
\MPset{
  colors/.is choice,
  colors/1/.code={\def\test{\textcolor{black}{TEST}}},
  colors/2/.code={\def\test{\textcolor{red}{TEST}}},
  colors/3/.code={\def\test{\textcolor{blue}{TEST}}},
  % default value
  colors=2,
}

\ProcessPgfPackageOptions{/MP}
\endinput% mypack.sty
\end{filecontents*}
%------------------------------

\usepackage[colors=3]{mypack}
%\MPset{colors=2}
\begin{document}
  \test
\end{document}

以下是修改后的版本(尝试) 符合您的要求。

  • \MPspecial宏使用MP@uses@italicTeX-if 在斜体或彩色之间进行选择。
  • use italic键将MP@uses@italicTeX-if 设置为 true 或 false。
  • define current color定义当前颜色(通过 xcolor)并顺便将其当前名称存储在中\MP@current@color
  • 关键colors是选择三种方案(黑色、蓝色、红色)并定义MP current color。红色和蓝色设置use italic为 false,黑色设置use italic为 true。
\documentclass{article}
%------------------------------
\usepackage{filecontents}
\begin{filecontents*}{mypack.sty}
\ProvidesPackage{mypack}
\RequirePackage{xcolor}
\RequirePackage{pgfopts}

\newif\ifMP@uses@italic
\pgfkeys{/MP/.is family}
\def\MPset#1{\pgfkeys{/MP,#1}}
\MPset{
  % some special macros use italic istead of black
  use italic/.is if=MP@uses@italic,
  use italic=false, % default value
  % define the current color
  define current color/.code={\def\MPcurrent@color@name{#1}\colorlet{current MP color}{#1}},
  % 
  colors/.is choice,
  colors/black/.style={use italic=true,define current color=black},
  colors/red/.style={use italic=false,define current color=red},
  colors/blue/.style={use italic=false,define current color=blue},
  % default value
  colors=red,
}

\def\MPspecial#1{\ifMP@uses@italic\textit{#1}\else\textcolor{current MP color}{#1}\fi}
\def\test{\textcolor{current MP color}{TEST (in \MPcurrent@color@name)}}

\ProcessPgfPackageOptions{/MP}
\endinput% mypack.sty
\end{filecontents*}
%------------------------------
\pagestyle{empty}
\usepackage[colors=red]{mypack}
\begin{document}
\test{} \MPspecial{My text}

\MPset{colors=black}
\test{} \MPspecial{My text}

\MPset{colors=blue}
\test{} \MPspecial{My text}

\end{document}

在此处输入图片描述

相关内容