Como alguém pode ocultar/exibirtodosdescrições em um description
ambiente ao mesmo tempo.
\documentclass[]{article}
\begin{document}
\begin{description}
\item[Keep This] Discard This
\item[Keep This] Discard This
\end{description}
\end{document}
Responder1
Uma opção seria redefinir a forma como description
funciona, captando todo o seu \item[<stuff>]
conteúdo e desconsiderandotudooutro. Esse pegar e soltar é possível através de uma redefinição local \item
e da colocação de todo o ambiente dentro de uma caixa. Dessa forma, as coisas não ficam definidas na página, mas você pode processar o ambiente.
A breve discussão acima é implementada abaixo:
\documentclass{article}
\let\olddescription\description% Store \description (\begin{description})
\let\endolddescription\enddescription% Store \enddescription (\end{description})
\newsavebox{\descriptionbox}
\makeatletter
\newcommand{\discarddescription}{%
\renewenvironment{description}
{\gdef\descriptionlist{}% Clear description list
\begingroup% Begin local scope
\def\item[####1]{\g@addto@macro\descriptionlist{\item[####1]}}% Redefine \item[.] to capture its argument
% and store it in \descriptionlist
\begin{lrbox}{\descriptionbox}}% Start capturing elements
{\end{lrbox}% End capturing elements
\endgroup% Close local scope
\begin{olddescription}\descriptionlist\end{olddescription}}% Set captured items in regular description
}
\newcommand{\restoredescription}{%
\let\description\olddescription% Restore \description (\begin{description})
\let\enddescription\endolddescription% Restore \enddescription (\end{description})
}
\makeatother
\begin{document}
\begin{description}
\item[Keep this] Definitely keep this
\item[Keep that] Definitely keep that
\end{description}
\discarddescription
\begin{description}
\item[Keep this] Discard this
\item[Keep that] Discard that
\end{description}
\restoredescription
\begin{description}
\item[Keep this] Definitely keep this
\item[Keep that] Definitely keep that
\end{description}
\end{document}
São fornecidas opções para descartar description
conteúdo (via \discarddescription
) e restaurar sua funcionalidade original (via \restoredescription
).
Responder2
Se você quiser esconder completamentetodos description
ambientes você pode simplesmente redefinir o description
ambiente para ignorar qualquer coisa em seu corpo viao environ
pacote. Então com \RenewEnviron{description}{}{}
: você obtém:
Se você ainda quiser que os \item
rótulos formem os description
ambientes, poderá ocultar o answer
ambiente da mesma maneira por meio de \RenewEnviron{answer}{}
:
Então, quando você quiser, ansers
você pode usar \NewEnviron{answer}{\BODY}
para obter:
Código: Ocultar description
ambiente
\documentclass[]{article}
\usepackage{environ}
\usepackage{comment}
%\excludecomment{answer}
\includecomment{answer}
\RenewEnviron{description}{}{}
\begin{document}
Some text before.
\begin{description}
\item[A]
\begin{answer}
Answer A
\end{answer}
\item[B]
\begin{answer}
Answer B
\end{answer}
\end{description}
Some text after.
\end{document}
Código: Ocultar answer
ambiente
\documentclass[]{article}
\usepackage{environ}
\NewEnviron{answer}{}% <--- Use this to hide the answer environment
%\NewEnviron{answer}{\BODY}% <--- Use this if you want the answer environment
\begin{document}
Some text before.
\begin{description}
\item[A]
\begin{answer}
Answer A
\end{answer}
\item[B]
\begin{answer}
Answer B
\end{answer}
\end{description}
Some text after.
\end{document}
Responder3
Você pode alternar facilmente entre diferentes definições de um comando, adicionar um% e excluir outro. Eu faço muito isso, para mudar o layout. Pense no seu documento tex como uma espécie de banco de dados, mantendo o máximo possível de informações de formatação no cabeçalho.
\documentclass[]{article}
%\newcommand*{\thing}[2]{\item[#1] #2}
\newcommand*{\thing}[2]{\item[#1]}
\begin{document}
\begin{description}
\thing{A}{A}
\thing{B}{B}
\end{description}
\end{document}
Responder4
Isto explora o fato de que em description
umtempara especificar o argumento opcional. De qualquer forma, é melhor dar aos ambientes pessoais um nome diferente do genérico, então defini um answers
ambiente; cada item é introduzido por \answer
.
\documentclass{article}
\usepackage{environ}
\newif\ifshowanswers
%\showanswerstrue % uncomment for showing answers
\NewEnviron{answers}{%
\begin{description}
\ifshowanswers
\let\answer\item
\BODY
\else
\expandafter\processitems\BODY\answer\processitems
\fi
\end{description}
}
\makeatletter
\long\def\processitems\answer[#1]#2\answer#3\processitems{%
\item[#1]%
\if\relax\detokenize{#3}\relax
\expandafter\@gobble
\else
\expandafter\@firstofone
\fi
{\processitems\answer#3\processitems}% restart the recursion
}
\begin{document}
\begin{answers}
\answer[A] Discard answer text A
\answer[B] Discard answer text B
\end{answers}
% this is by way of example
\showanswerstrue
\begin{answers}
\answer[A] Discard answer text A
\answer[B] Discard answer text B
\end{answers}
\end{document}