如何制作这样的盒子

如何制作这样的盒子

请问如何在 LaTeX 中制作类似的东西。请帮帮忙。在此处输入图片描述

答案1

@egreg 的评论 —— 使用fncychap该选项加载包Glenn就可以完成工作 —— 是正确的。

在此处输入图片描述

\documentclass{book}
\renewcommand\chaptername{Tutorial Questions}
\usepackage[Glenn]{fncychap}

\begin{document}
\setcounter{chapter}{2} %just for this example
\chapter{Tutorial III}
\end{document}

答案2

有很多方法,取决于你想要的用途。以下是使用 Ti 的一种可能性。Z。

\documentclass{article}

\usepackage{tikz}
\tikzset{my label/.style={fill=white, align=left, inner sep=2pt, above=3pt, font={\small}}}

\begin{document}

\begin{tikzpicture}[]
\draw[thick] (0,1)node[my label, right=-3pt]{\sffamily TUTORIAL QUESTIONS {\large 3}} 
    rectangle (10,0)node[my label, left=-3pt]{TUTORIAL III};
\end{tikzpicture}

\end{document}

相关内容