How to write a \dummybox command ?Comment écrire une commande de 'dummybox' (marque-place ?)
I would like ta have a command with two parameters (width and height) to create provisory dummyboxes in J'aimerais avoir une commande permettant d'insérer une 'boite provisoire' (en attente de la figure définitive) dans une présentation beamer using en utilisant une commande à deux paramètres (largeur et hauteur) et le paquetage `tcolorbox`.
My MWE is here:
Voici mon ECM :
\documentclass{beamer}
\usetheme[width=.185\paperwidth]{Hannover}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{graphicx}
\usepackage{xcolor}
\usepackage[all]{tcolorbox}
\usepackage{tikz}
\usetikzlibrary{calc, shadows, arrows, decorations.pathmorphing, shapes}
%\newcommand{dummybox}[2]{%
%\begin{tcolorbox}[beamer,width=#1\textwidth,height=#2 \textheight,colback=cyan!10!white,colbacktitle=cyan!80!black]
%Waiting for the final picture !
%\end{tcolorbox}
%}
\title{Test file for dummybox command|}
\author{Me}
\begin{document}
\frame{\titlepage}
\begin{frame}
\frametitle{Here come the dummy box}
\begin{tcolorbox}[beamer,width=0.4\textwidth,height=0.3 \textheight,colback=cyan!10!white,colbacktitle=cyan!80!black]
Waiting for the final picture !\end{tcolorbox}
%\dummybox{0.5}{0.2}
\end{frame}
\end{document}
The L'insertion d'une `tcolorbox` with explicit dimension works fine, I would simply like to replace it by a command (commented lines) which does'nt work. I can't see what I missed.avec les dimensions explicites fonctionne, je voudrais simplement la replacer par une commande à deux paramètres (lignes commentées) ce qui ne fonctionne pas. Qu'ais-je raté ?