这是一个非常基本的问题,但我找不到这个问题的答案.... 我想创建一个看起来像这样的框:
___________________
|hello1 |
|hello2 |
|hello3 |
|__________________|
我在Latex中尝试了fbox命令。但是我只在一行而不是几行中得到文本。
答案 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}
你可以防止盒子缩进。