해당 상자가 사용되거나 배송될 때까지 상자 내용의 텍스트 색상과 배경색 설정을 연기하는 방법이 있습니까?

해당 상자가 사용되거나 배송될 때까지 상자 내용의 텍스트 색상과 배경색 설정을 연기하는 방법이 있습니까?

해당 상자가 사용될 때까지 상자 내용의 텍스트 색상과 배경색 설정을 지연시키는 방법이 있습니까?
해당 상자가 .pdf 파일 또는 .dvi 파일로 배송될 때까지 상자 내용의 텍스트 색상과 배경색 설정을 지연하는 방법이 있습니까?

S.th. 좋다:

\documentclass{article}
\usepackage{xcolor}

\newbox\mytempbox
\begin{document}
\savebox\mytempbox{%
  \vbox{%
    <Some special with placeholders for values of textcolor and backgroudcolor>
    \hbox{One}\hbox{Two}%
  }%
}

<Some directive for assigning values to placeholders for values of textcolor and backgroudcolor>
\usebox\mytempbox

<Some directive for assigning values to placeholders for values of textcolor and backgroudcolor>
\usebox\mytemphbox

<Some directive for assigning values to placeholders for values of textcolor and backgroudcolor>
\usebox\mytemphbox

\end{document}

관련 정보