带有 \fbox 的考试题目

带有 \fbox 的考试题目

在此处输入图片描述

我正在尝试为我的考试题目复制这种格式,但我真的不知道该怎么做。我尝试使用 \fbox,但我无法将“问题 2”放在框中:

\qformat{
\fbox{\parbox{5.5in}{\centering \thequestion}}}

有人知道怎么做吗?

答案1

正如 leandris 提到的,您可以使用tcolorbox

\documentclass{book} 
\usepackage[most]{tcolorbox}

\newtcolorbox[auto counter]{examquestion}[1][]{colback=white, colframe=black,
fonttitle=\bfseries\sffamily, colbacktitle=white,
enhanced,coltitle=black,top=4mm,
attach boxed title to top center={xshift=-4cm,yshift=-3mm},
title=QUESTION \thetcbcounter,#1}


\begin{document} 
\begin{examquestion}
Vrai ou faux?
\end{examquestion} 

\begin{examquestion}
Cute or duck?
\end{examquestion} 
\end{document}

在此处输入图片描述

或者镶嵌盒周围没有框架:

\documentclass{book} 
\usepackage[most]{tcolorbox}

\newtcolorbox[auto counter]{examquestion}[1][]{colback=white, colframe=black,
fonttitle=\bfseries\sffamily, colbacktitle=white,
enhanced,coltitle=black,top=4mm,boxed title style={colframe=white},
attach boxed title to top center={xshift=-4cm,yshift=-3mm},
title=QUESTION \thetcbcounter,#1}


\begin{document} 
\begin{examquestion}
Vrai ou faux?
\end{examquestion} 

\begin{examquestion}
Cute or duck?
\end{examquestion} 
\end{document}

在此处输入图片描述

答案2

此外薛定谔的猫的前身答案,这是我的稍有不同的版本tcolorbox

在此处输入图片描述

\documentclass{article}

\usepackage[most]{tcolorbox}

\newtcolorbox[auto counter]{mybox}{lower separated=true,
boxrule=0.5pt,
colback=white,
colframe=black,
coltitle=black,
enhanced,
sharp corners,
halign=center,
boxed title style={colframe=white,colback=white,left=0pt,right=0pt},
attach boxed title to top left={xshift=0.25cm,yshift=-3.5mm},
title=\scriptsize\textsc{Question} \thetcbcounter}

\begin{document}
\begin{mybox}
the question text
\end{mybox}
\end{document}

相关内容