我想知道如何使用latex中的fbox命令在框中创建多个行

时间:2011-02-04 12:11:08

标签: latex

这是一个非常基本的问题,但我找不到这个问题的答案.... 我想创建一个看起来像这样的框:

                          ___________________
                          |hello1            |
                          |hello2            |
                          |hello3            |
                          |__________________|

我在Latex中尝试了fbox命令。但是我只在一行而不是几行中得到文本。

2 个答案:

答案 0 :(得分:9)

\fbox为其内容添加了一个框架,但不是段落框。因此,\parbox

中需要\fbox
\documentclass{article}
\begin{document}
\fbox{\parbox{\textwidth}{%
hello1\\
hello2\\
hello3
}}
\end{document}

答案 1 :(得分:3)

另外,如果你在\ fbox之前附加\ noindent,即

\documentclass{article}
\begin{document}
\noindent \fbox{\parbox{\textwidth}{%
hello1\\
hello2\\
hello3
}}
\end{document}

你可以防止盒子缩进。