Quero criar um ambiente que receba um argumento e um argumento opcional de tal forma que o primeiro argumento seja um título e os dois argumentos opcionais decidam se o título deve ser justificado à esquerda ou centralizado mais se o título quiser ser adicionado ao ToC.
Eu tenho esse código com um argumento opcional (graças a @egreg), então gosto de modificar para o caso de dois argumentos opcionais:
\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
Desde já, obrigado.
Segui a sugestão deTeepeemadicionando o seguinte
\if\detokenize{C}\detokenize{#1}\relax
\addcontentsline{toc}{chapter}{#2}
\fi
\if\detokenize{L}\detokenize{#1}\relax
\addcontentsline{toc}{chapter}{#2}
\fi
Responder1
Aqui está uma opção que fornece dois argumentos opcionais e um título obrigatório:
\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}
A chave é usar macros auxiliares para capturar os argumentos e depois armazená-los para uso em outro lugar.
O something
ambienteprimeiroargumento opcional especifica o alinhamento horizontal. Osegundoespecifica se a entrada deve ou não estar no ToC, seguida do título obrigatório.