答案1
\parbox
不需要使用(并且实际上对于目的来说有些错误):
\noindent\framebox[\textwidth][s]{Test No: 001\hfill Topic: Elements}
完整示例:
\documentclass{article}
\usepackage{multicol}
\usepackage{lipsum}
\setlength{\columnseprule}{0.4pt}
\begin{document}
\noindent\framebox[\textwidth][s]{Test No: 001\hfill Topic: Elements}
\begin{multicols}{2}
\noindent\textbf{Question 1.}
\lipsum
\end{multicols}
\end{document}
答案2
只需使用\hfill
。
\noindent\fbox{%
\parbox{\textwidth}{%
Test No: 001\hfill Topic: Elements
}%
}