我想并排创建两个框(如下图所示),以便将红色框放在蓝色框的右侧:
我写了这段代码,但我不知道该怎么做(我只是指定适合一般页面的宽度):
\documentclass{article}
\usepackage{pgf, tikz, adjustbox}
\usepackage{tcolorbox}
\begin{document}
\tcbset{colback=blue!5!white,colframe=blue!75!black,fonttitle=\bfseries, width = 12cm}
\begin{tcolorbox}[before=\adjustbox{valign=t}\bgroup, after=\egroup]
\textbf{Démonstration}
\end{tcolorbox}
\tcbset{colback=red!5!white,colframe=red!75!black,fonttitle=\bfseries, width = 5cm}
\begin{tcolorbox}[before=\adjustbox{valign=t}\bgroup, after=\egroup]
\gap
A écrire
\end{tcolorbox}
\end{document}
任何帮助都将不胜感激!非常感谢。
答案1
box align
我发现包装文档在 PDF 的第 86 页。您可以将其设置为top
、bottom
和center
。以下是使用 的示例center
:
\documentclass{article}
\usepackage{pgf, tikz, adjustbox}
\usepackage{tcolorbox}
\usepackage{xcolor}
\begin{document}
\tcbset{colback=blue!5!white,colframe=blue!75!black,fonttitle=\bfseries,width=5cm,nobeforeafter}
\begin{tcolorbox}[box align=center]
\textbf{Démonstration}
\end{tcolorbox}
\tcbset{colback=red!5!white,colframe=red!75!black,fonttitle=\bfseries,width = 5cm}
\begin{tcolorbox}[box align=center]
\vspace{1cm}
A écrire
\end{tcolorbox}
\end{document}