如何使用 tcolorbox 设置倾斜阴影框和连字符框

如何使用 tcolorbox 设置倾斜阴影框和连字符框

大家好!大家好,我在这里使用 tcolorbox 包,我有两种类型的框样式,一种是倾斜阴影类型,另一种是没有倾斜和连字符边框的框。我用“红色”颜色突出显示框一,用“绿色”颜色突出显示框二样式。请提出如何解决这个问题的建议。

梅威瑟: 在此处输入图片描述

\documentclass[12pt]{article}

\RequirePackage[most]{tcolorbox}
\usetikzlibrary{patterns}

\newenvironment{Boxtwo}{\begin{tcolorbox}[bicolor,colback=white,colbacklower=white,
colframe=black,tikznode lower={inner sep=2pt,draw=red,fill=yellow}]
}{\end{tcolorbox}}



\begin{document}

\begin{Boxtwo}%[WORKED E.G. 1.1]
\begin{itemize}
\item Solving number sentences with multiple operations with or without brackets
\item Writing number sentences to describe problem situations
\item Checking solutions by substitution
\item Using properties of operations on whole numbers to simplify number sentences
\end{itemize}
\end{Boxtwo}

\begin{Boxtwo}%[WORKED E.G. 1.1]
\subsection{Addition}
A patient asks you how many medicines they need to swallow to take all their morning medicines. They have the following medicines to take:
\begin{itemize}
\item 500 mg paracetamol (2 capsules)
\item 40 mg frusemide (1 tablet)
\item 62.5 mcg digoxin (2 tablets)
\end{itemize}
A patient asks you how many medicines they need to swallow to take all their morning medicines. They have the following medicines to take:
\end{Boxtwo}

\end{document}

答案1

您必须调整边距、间距、颜色、字体等,但您已经可以从头开始了

\documentclass{article}
\usepackage[most]{tcolorbox}
\usepackage{lipsum}
\usepackage{lmodern}

\begin{document}
\begin{tcolorbox}[
    enhanced, 
    frame hidden,
    colback=cyan!10,
    top=3mm,
    overlay={%
        \draw[rounded corners, red, dashed, ultra thick] (frame.north west) rectangle (frame.south east);
        \node[font=\Huge\sffamily\bfseries, text=blue, anchor=west, rotate=5] at ([xshift=5mm] frame.north west) {Some title};}, 
    ]
\lipsum[1]
\end{tcolorbox}

\begin{tcolorbox}[
    enhanced, 
    frame hidden,
    colback=white,
    top=3mm,
    underlay={%
        \fill[orange!30, rounded corners] (frame.north west)--([shift={(1mm,1mm)}]frame.north east)--([shift={(3mm,-3mm)}]frame.south east) -- ([shift={(0mm,-1mm)}]frame.south west) -- cycle;
        \fill[white, rounded corners] (interior.north west) rectangle (interior.south east);},
    overlay={%
        \node[font=\Huge\sffamily\bfseries, text=blue, anchor=west, rotate=5] at ([xshift=5mm] frame.north west) {Some title};}, 
    ]
\lipsum[1]
\end{tcolorbox}
\end{document}

在此处输入图片描述

相关内容