Supongamos que tengo un comando como este: \command{<command>}{<content>}{<value>}
. ¿Hay alguna forma de acceder a los demás argumentos teniendo uno de ellos? por ejemplo, algo como esto:
\getcontent{<value> or <command>}%----> output: <content>
\getcommand{<content> or <value>}%----> output: <command>
\getvalue{<content> or <command>}%----> output: <value>
¿Tampoco tengo idea de cómo definirlo \command{<command>}{<content>}{<value>}
?
Respuesta1
Quizás la siguiente sea una opción:
\documentclass{article}
% \command{<command>}{<content>}{<value>}
\newcommand{\command}[3]{%
\expandafter\def\csname #2@cmd\endcsname{#1}%
\expandafter\def\csname #3@cmd\endcsname{#1}%
\expandafter\def\csname #1@cnt\endcsname{#2}%
\expandafter\def\csname #3@cnt\endcsname{#2}%
\expandafter\def\csname #1@val\endcsname{#3}%
\expandafter\def\csname #2@val\endcsname{#3}%
}
\newcommand{\getcontent}[1]{%
\ifcsname #1@cnt\endcsname
\csname #1@cnt\endcsname
\else
No command/value associated with #1.
\fi
}
\newcommand{\getcommand}[1]{%
\ifcsname #1@cmd\endcsname
\csname #1@cmd\endcsname
\else
No content/value associated with #1.
\fi
}
\newcommand{\getvalue}[1]{%
\ifcsname #1@val\endcsname
\csname #1@val\endcsname
\else
No command/content associated with #1.
\fi
}
\begin{document}
\command{abc}{def}{ghi}
\getcommand{def} % abc
\getcommand{ghi} % abc
\getcontent{abc} % def
\getcontent{ghi} % def
\getvalue{abc} % ghi
\getvalue{def} % ghi
\getcommand{jkl}% No jkl found
\getcontent{jkl}% No jkl found
\getvalue{jkl}% No jkl found
\end{document}
Notarás que, por conveniencia, lo dejé <command>
como una cadena, en lugar de una secuencia de control. Dado que no existe un contexto para el uso de <command>
, es posible que esto no sea un problema.