答案1
答案2
您可以在里面设置文本tabular
(默认使用文本模式显示内容)并使用可扩展的(\left
或\right
)\downarrow
缩放箭头以适合您的垂直长度:
\documentclass{article}
\begin{document}
\[
\left\downarrow
\begin{tabular}{@{} l @{}}
\small some text here \\
\small I would like this part to go on a new line
\end{tabular}
\right.
\]
\[
\left\downarrow
\begin{tabular}{@{} l @{}}
\small some text here \\
\small I would like this part to go on a new line \\
\small and this is down even further
\end{tabular}
\right.
\]
\end{document}