像这样在文本周围设置格式框吗?

像这样在文本周围设置格式框吗?

你能帮我格式化成这样吗?非常感谢!

问题 1. 假设 ACB 为直角三角形,且 CAB 为直角…(问题是反函数)

在此处输入图片描述

答案1

你可以从这里开始....

(需要改变颜色...)

\documentclass{article}

\usepackage[most]{tcolorbox}

\newtcolorbox[auto counter
%,number within=section
]{pabox}[2][]{%
colback=red!5!white,
colbacktitle=red,
coltitle=red!70!black,
colframe=red!75!black,
fonttitle=\bfseries,
detach title,
before upper={\tcbtitle\quad},
title=Problem~\thetcbcounter. #2,#1}

\begin{document}

\begin{pabox}[]{}
This is a \textbf{tcolorbox}.
\end{pabox}

\end{document}

在此处输入图片描述

编辑

\documentclass[border=3mm]{standalone}

\usepackage[most]{tcolorbox}

\newtcolorbox[auto counter
%,number within=section
]{pabox}[2][]{%
colback=green!90!blue,
%colbacktitle=black,
coltitle=black,
colframe=red!75!black,
fonttitle=\bfseries,
detach title,
bicolor,sidebyside,
righthand width=8cm,
colbacklower=blue!10,
before upper={\tcbtitle\quad},
title=Problem~\thetcbcounter. #2,#1}

\begin{document}

\begin{pabox}[]{}
\tcblower
This is a \textbf{tcolorbox}.
\end{pabox}

\end{document}

在此处输入图片描述

相关内容