换行符无法与 parbox 和 usebox 配合使用

换行符无法与 parbox 和 usebox 配合使用

我想在迭代中将数据保存到 savebox(或任何其他存储元素)。最后,我想将每个数据点放在一个 framebox 中,然后放在具有给定宽度的 frambox 容器中。这是我的实现:

\documentclass{article}

\newsavebox{\foo}
\newcommand{\savedata}[1]{\savebox{\foo}{\usebox{\foo} \fbox{#1}}}
\newcommand{\printdata}{\framebox{\parbox{4cm}{\usebox{\foo}}}}
\begin{document}
The desired usage:
\savedata{This is a box}
\savedata{This is another box}
\savedata{This is third box}
\printdata
\\
The desired output:
\framebox{\parbox{4cm}{
  \fbox{This is a box} 
  \fbox{This is another box} 
  \fbox{This is third box}}}
\end{document}

输出:
输出 如图所示,使用编程实现时,容器不会包裹内部框架框。哪里出了问题?

答案1

您希望 raggedright 允许线条变短,并且需要取消装箱已保存的数据以允许换行:

\documentclass{article}

\newsavebox{\foo}
\newcommand{\savedata}[1]{\savebox{\foo}{\ifvoid\foo\else\unhbox\foo{} \fi\fbox{#1}}}
\newcommand{\printdata}{\framebox{\parbox{4cm}{\raggedright\unhbox\foo}}}
\begin{document}
The desired usage:
\savedata{This is a box}
\savedata{This is another box}
\printdata

The desired output:
\framebox{\parbox{4cm}{\raggedright\fbox{This is a box} \fbox{This is another box}}}
\end{document}

答案2

我不确定你是否想使用盒子:

\documentclass{article}

\usepackage{etoolbox}
\newcommand{\cleardata}{\renewcommand*{\saveddata}{}}
\newcommand*\saveddata{} % initialize

\newcommand{\savedata}[1]{%
  \unskip
  \ifx\saveddata\empty
  \else
    \appto{\saveddata}{\\}
  \fi
  \appto{\saveddata}{\fbox{#1}}\ignorespaces
}
\newcommand{\printdata}[1][4cm]{\fbox{\parbox{#1}{\raggedright\saveddata}}}

\begin{document}
The desired usage:
\savedata{This is a box}
\savedata{This is another box}
\savedata{This is third box}
\printdata

The desired output:
\framebox{\parbox{4cm}{
  \fbox{This is a box} \\
  \fbox{This is another box} \\
  \fbox{This is third box}}}

With optional argument: \printdata[6cm]
\end{document}

该命令\cleardata重置了添加新盒子的机制。

在此处输入图片描述

这里我使用这个是etoolbox为了方便。你可以\appto自己定义来避免这种情况:

\makeatletter
\providecommand\appto[2]{%
  \ifx#1\@undefined
    \def#1{#2}%
  \else
    \expandafter\def\expandafter#1\expandafter{#1#2}%
  \fi
}
\makeatother

答案3

你确定你需要 4cm 宽度的完成盒子吗?将此宽度设置为内部最宽盒子的宽度不是更好吗?如果是这样,那么你可以使用:

\newbox\foo
\def\savedata#1{\setbox\foo=\vbox{\unvbox\foo \hbox{\fbox{#1}}\kern1pt}\ignorespaces}
\def\printdata{\framebox{$\vcenter{\box\foo\kern-1pt}$}}

相关内容