Quiero crear un entorno que reciba un argumento y un argumento opcional de tal manera que el primer argumento sea un título y los dos argumentos opcionales decidan si el título debe justificarse hacia la izquierda o centrado y si el título quiere agregarse a la ToC.
Tengo este código con un argumento opcional (gracias a @egreg), así que me gusta modificarlo para el caso de dos argumentos opcionales:
\makeatletter
\newenvironment{something}[2][c]
{\begin{\csname #1@somethingtitle\endcsname}
\bfseries #2
\end{\csname #1@somethingtitle\endcsname}}
{\par\addvspace{\topsep}}
\newcommand\l@somethingtitle{flushleft}
\newcommand\c@somethingtitle{center}
\makeatother
Gracias de antemano.
Seguí la sugerencia detipiañadiendo lo siguiente
\if\detokenize{C}\detokenize{#1}\relax
\addcontentsline{toc}{chapter}{#2}
\fi
\if\detokenize{L}\detokenize{#1}\relax
\addcontentsline{toc}{chapter}{#2}
\fi
Respuesta1
Aquí hay una opción que proporciona dos argumentos opcionales y un título obligatorio:
\documentclass{article}
\makeatletter
\newcommand{\something@aux@A}[1][c]{%
\def\something@halign{#1}%
\something@aux@B%
}
\newcommand{\something@aux@B}[2][y]{%
\expandafter\begin\expandafter{\csname\something@halign @somethingtitle\endcsname}
\csname phantomsection\endcsname% If you're using hyperref
\bfseries #2
\expandafter\end\expandafter{\csname\something@halign @somethingtitle\endcsname}
\def\something@toc{#1}
\ifx\something@toc\something@toc@y
\addcontentsline{toc}{section}{#2}%
\fi
\par\addvspace{\topsep}
}
\newenvironment{something}
{\something@aux@A}
{}
\newcommand{\l@somethingtitle}{flushleft}
\newcommand{\c@somethingtitle}{center}
\newcommand{\r@somethingtitle}{flushright}
\def\something@toc@y{y}
\makeatother
\begin{document}
\tableofcontents
\begin{something}{titleA}
Here is something without any optional argument.
\end{something}
\begin{something}[l]{titleB}
Here is something with a single optional argument.
\end{something}
\begin{something}[r][n]{titleC}
Here is something with two optional arguments.
\end{something}
\end{document}
La clave es utilizar macros auxiliares para capturar los argumentos y luego almacenarlos para usarlos en otro lugar.
El medio something
ambienteprimeroEl argumento opcional especifica la alineación horizontal. Elsegundoespecifica si la entrada debe estar o no en el ToC, seguida del título obligatorio.