summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-05-16 22:27:53 +0000
committerKarl Berry <karl@freefriends.org>2013-05-16 22:27:53 +0000
commitf297f05f92068bd7f54e8ee25ce7b8b8a83c2353 (patch)
treec63d2d20618d3c3d815c71145639a971d297a618 /Master/texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex
parentb270fa2262972ce19c18ccd488b85e1f96f9a36d (diff)
tcolorbox (16may13)
git-svn-id: svn://tug.org/texlive/trunk@30508 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex')
-rw-r--r--Master/texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex32
1 files changed, 32 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex b/Master/texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex
index bf52c71934b..11dca2965f4 100644
--- a/Master/texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex
+++ b/Master/texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex
@@ -141,3 +141,35 @@ and options.
\end{docCommand}
+
+\begin{docCommand}{newtcbox}{\marg{\texttt{\textbackslash}name}\oarg{number}\oarg{default}\marg{options}}
+ Creates a new macro \meta{\texttt{\textbackslash}name} based on \refCom{tcbox}.
+ Basically, |\newtcbox| operates like |\newcommand|.
+ The new macro \meta{\texttt{\textbackslash}name} optionally takes \meta{number}$+1$ arguments, where
+ \meta{default} is the default value for the optional first argument.
+ The \meta{options} are given to the underlying |tcbox|.
+\begin{dispExample*}{sbs,lefthand ratio=0.6}
+\newtcbox{\mybox}{colback=red!5!white,
+ colframe=red!75!black}
+
+\mybox{This is my own box.}
+\end{dispExample*}
+
+\begin{dispExample*}{sbs,lefthand ratio=0.6}
+\newtcbox{\mybox}[1]{colback=red!5!white,
+ colframe=red!75!black,fonttitle=\bfseries,
+ title=#1}
+
+\mybox{Hello there}{This is my own box.}
+\end{dispExample*}
+
+\begin{dispExample*}{sbs,lefthand ratio=0.6}
+\newtcbox{\mybox}[2][]{colback=red!5!white,
+ colframe=red!75!black,fonttitle=\bfseries,
+ title=#2,#1}
+
+\mybox[colback=yellow]{Hello there}%
+ {This is my own box.}
+\end{dispExample*}
+\end{docCommand}
+