请问如何在 中设置两行framebox
?
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[czech,english]{babel}
\begin{document}
\framebox[\textwidth]{\centering \textbf{Instruction:}\\ Find the ground state energy of a helium atom in first-order perturbation theory.} \par
\end{document}
该指令在语法上是否正确?
答案1
\framebox
创建单行框。点击这里了解更多信息。
由于你的盒子里有很多行,你可以使用framed
环境,从同名包。
题外话:不要使用\\
它来转到新行,只需留下一个空行。
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[czech,english]{babel}
\usepackage{framed}
\begin{document}
\begin{framed}\centering\textbf{Instruction:}
Find the ground state energy of a helium atom in first-order perturbation theory.
\end{framed}
\end{document}