我正在尝试做以下事情:
有人能举个例子说明如何做到这一点吗?它需要像环境一样位于纸张中间$$ $$
,如果可以贴上标签并在以后引用,那就更好了。
答案1
您可以在常规中设置文本\parbox
:
\documentclass{article}
\newcommand{\textbox}[3][c]{\parbox[#1]{#2}{\strut#3\strut}}
\begin{document}
\begin{equation}
\left\{\textbox{2cm}{Here is some regular text}\right\} =
\left\{\textbox{2cm}{Here is some more regular text}\right\} +
\left\{\textbox{3cm}{This is the last piece of text in the equation}\right\} \label{eqn:myeqn}
\end{equation}
See~(\ref{eqn:myeqn}).
\end{document}
\parbox[<valign>]{<width>}{<stuff>}
设置<stuff>
为宽度为par
agraph并根据(op、entered 或ottom)垂直对齐。在开始/结尾处使用s 试图纠正与装箱相关的间距问题。作为参考,请参阅box
<width>
<valign>
t
c
b
\strut
\baselineskip
使用minipage
s (或es) 时如何保持常数\parbox
?。
使用宏的想法是\textbox
是为了促进排版一致性。