Я хотел бы создать среду foo
и команду \listfoo
, чтобы:
- Содержание среды
foo
скрыто; и - Команда
\listfoo
выводит список всего текста, содержащегося вfoo
среде.
Другими словами, следующий код:
\documentclass{article}
\usepackage{lipsum}
\newenvironment{foo}{% Some code here
}
{% Some code here
}
\newcommand{\listfoo}{
% Some code to list the content of the `foo` environments.
}
\begin{document}
\lipsum[1]
\begin{foo}
\bf Foo text 1
\end{foo}
\lipsum[2]
\begin{foo}
\bf Foo text 2
\end{foo}
\lipsum[3]
\begin{foo}
\bf Foo text 3
\end{foo}
\listfoo
\end{document}
должен получиться следующий результат:
Буду очень признателен за любые предложения о том, как действовать дальше. Спасибо!
решение1
Здесь используется макрос \foocollect
, и \NewEnviron
вместо него \newenvironment
расширяются \foocollect
предыдущие \foocollect
версии, а затем локальная версия \BODY
текущей среды.
\documentclass{article}
\usepackage{lipsum}
\usepackage{environ}
\def\foocollect{}
\NewEnviron{foo}{% Some code here
\xdef\foocollect{\expandafter\unexpanded\expandafter{\foocollect}\par\expandafter\unexpanded\expandafter{\BODY}}%
}[% Some code here
]
\newcommand{\listfoo}{%
\foocollect%
% Some code to list the content of the `foo` environments.
}
\begin{document}
\lipsum[1]
\begin{foo}
\bfseries Foo text 1
\end{foo}
\lipsum[2]
\begin{foo}
\bfseries Foo text 2
\end{foo}
\lipsum[3]
\begin{foo}
\bfseries Foo text 3
\end{foo}
\listfoo
\end{document}
Обновление с сохранением в файле вместо памяти
\documentclass{article}
\usepackage{lipsum}
\usepackage{environ}
%\usepackage{morewrites}% only if you run out of filehandles
\newwrite\collectedcontentfile
\AtBeginDocument{%
% Automatically open the file at the beginning of the document
\immediate\openout\collectedcontentfile=\jobname.cll
}
\NewEnviron{foo}{% Some code here
\immediate\write\collectedcontentfile{%
\expandafter\unexpanded\expandafter{\BODY}^^J
}%
}[% Some code here
]
\newcommand{\listfoo}{%
%Closing the file
\immediate\closeout\collectedcontentfile%
\InputIfFileExists{\jobname.cll}{}{}
}
\begin{document}
\lipsum[1]
\begin{foo}
\bfseries Foo text 1
\end{foo}
\lipsum[2]
\begin{foo}
\bfseries Foo text 2
\end{foo}
\lipsum[3]
\begin{foo}
\bfseries Foo text 3
\end{foo}
\listfoo
\end{document}
решение2
Альтернативный вариант использования scontents
пакета:
\documentclass{article}
\usepackage{lipsum}
\usepackage{scontents}
\newenvsc{foo}[store-env=foopost,print-env=false]
\begin{document}
\lipsum[1]
\begin{foo}
\textbf{Foo text 1
\end{foo}
\lipsum[2]
\begin{foo}
\textbf{Foo text 2}
\end{foo}
\lipsum[3]
\begin{foo}
\textbf{Foo text 3}
\end{foo}
\noindent
\foreachsc[after={\\}]{foopost}
\end{document}