我想给段落加边框,所以我用\framebox
这个方法。但我遇到一个问题,我的段落太长,我无法插入换行符,而且段落超出了边框。
\documentclass[12pt]{article}
\usepackage[utf8]{vietnam}
\begin{document}
\framebox[0.9\textwidth]{
\textbf{Subordinated bond} (Trái phiếu ưu tiên thấp nhất) là một trái phiếu chỉ được hoàn trả tiền sau khi một số khoản vay khác của người phát hành đã được ưu tiên thanh toán trước. \par
\textbf{Senior (Trái phiếu ưu tiên ở mức cao)} là những trái phiếu được đảm bảo chặt chẽ hơn, nghĩa là được ưu tiên thanh toán tiền ở mức cao hơn các loại khác.
}
\end{document}
请帮助我解决问题并向我展示如何创建一个框架框,其内容会根据该框架框调整大小。
答案1
您应该将其包裹在\parbox
固定宽度中并使用以下方法将其装箱\fbox
:
\documentclass[12pt]{article}
\usepackage[utf8]{vietnam}
\begin{document}
\fbox{%
\parbox{0.9\textwidth}{%
\textbf{Subordinated bond} (Trái phiếu ưu tiên thấp nhất) là một trái phiếu chỉ được hoàn trả tiền sau khi một số khoản vay khác của người phát hành đã được ưu tiên thanh toán trước.
\par
\textbf{Senior (Trái phiếu ưu tiên ở mức cao)} là những trái phiếu được đảm bảo chặt chẽ hơn, nghĩa là được ưu tiên thanh toán tiền ở mức cao hơn các loại khác.}%
}
\end{document}
\par
在 a 内部\framebox
不会产生预期的结果,但它在 a 内部有效\parbox
。
答案2
你可以使用包framed
\documentclass[12pt]{article}
\usepackage[utf8]{vietnam}
\usepackage{framed}
\begin{document}
\noindent Text before text before text before text before text before
text before text before text before text before text before text before
text before text before text before text before text before text before
text before text before
\begin{framed}
\textbf{Subordinated bond} (Trái phiếu ưu tiên thấp nhất) là một trái
phiếu chỉ được hoàn trả tiền sau khi một số khoản vay khác của người
phát hành đã được ưu tiên thanh toán trước.
\par
\textbf{Senior (Trái phiếu ưu tiên ở mức cao)} là những trái phiếu
được đảm bảo chặt chẽ hơn, nghĩa là được ưu tiên thanh toán tiền ở mức
cao hơn các loại khác.
\end{framed}
\noindent Text after text after text after text after text after text
after text after text after text after text after text after text after
text after text after text after text after text after text after text
after
\end{document}