透過 pgfkey 在 newcommand 中設定標籤

透過 pgfkey 在 newcommand 中設定標籤

我正在嘗試在使用新命令創建的巨集(?)中設定標籤。我透過 pgfkeys 將多個值傳遞給第一個參數中的命令,但\label巨集只是使用我放入的文字字串來擴展 pgfkey 而不是實際擴展值。

我已經嘗試過這些答案中提出的兩個解決方案,無論是一起還是單獨,但運氣不佳。

https://tex.stackexchange.com/a/308164

https://tex.stackexchange.com/a/125099

我隱約感覺到發生的事情與 pgfkey 值的擴展時間有關,但說實話,我對底層 tex 引擎如何發揮其魔力並沒有深入的了解。我也剛學習 pgfkeys,所以我對那裡發生的事情的理解仍然處於初學者水平。

這是我對我正在嘗試做的事情的看法:

\documentclass[twocolumn]{book}

\usepackage[framemethod=TikZ]{mdframed}%boxes
\usepackage{pgfkeys}

\newcounter{myCounter}

\newmdenv[%
frametitlebackgroundcolor=blue,
frametitlefontcolor=white,
backgroundcolor=blue!25,
linecolor=blue,
outerlinewidth=1pt,
roundcorner=1mm,
skipabove=\baselineskip,
skipbelow=\baselineskip,
font=\small,
nobreak=true,
settings={\global\refstepcounter{myCounter}},
]{myTextBox}


%Define Macros
\makeatletter

\pgfkeys{/mykeys/textbox/.cd,
    title/.initial=,
    body/.initial=,
    label/.initial=,
}

\def\mykeys@set@textbox@keys#1{%%
    \pgfkeys{/mykeys/textbox/.cd,#1}}
\def\mykeys@get@textbox#1{%%
    \pgfkeysvalueof{/mykeys/textbox/#1}}

\newcommand\myBox[1]{%%
    \bgroup
    \mykeys@set@textbox@keys{#1}%%
    \begin{myTextBox}[frametitle=\textbf{\mykeys@get@textbox{title}\hfill NOTE}]
        \mykeys@get@textbox{body}
        \label{box:\mykeys@get@textbox{label}}
    \end{myTextBox}
    \egroup
}

\makeatother

\begin{document}
\section{A Section}
\myBox{
    title=Box Title,
    body=A not so long string of text to go in the box,
    label=firstbox
}
\ref{firstbox}

\end{document}

這是我目前的結果:

目前結果

只要我能讓標籤和引用正常工作,我就不會依賴特定的解決方案(我更喜歡與 pgfkeys 一起使用的解決方案)。

相關內容