Added 'LaTeX/minipage_command_callout.tex'

This commit is contained in:
anon
2024-12-10 20:39:02 +01:00
parent 0484234a9a
commit 8f2179cf8f

View File

@ -0,0 +1,22 @@
\documentclass{book}
\usepackage{xcolor,graphicx}
\usepackage{afterpage}
\newcommand{\noticecallout}[2]{
\fcolorbox{black}{violet!20}{
\begin{minipage}{10cm}
\includegraphics[width=4mm,height=4mm]{danger.png}
{\bf #1!}
#2
\end{minipage}
}
}
\begin{document}
\noticecallout{Never pour boiling water on plants}{Its not great for them.}
\noticecallout{Dogs cannot survive great falls}{
You are thinking of cats. Please do not throw Rex off the roof, or he may never woof again.
}
\end{document}