Is there a drawback of defining and using a \newcommand instead of \begin{something}. e.g. if I use
\newcommand{btkz}{\begin{tikzpicture}}
\newcommand{etkz}{\end{tikzpicture}}
\btkz
\node{Hello World};
\etkz
Actually I am working on a Beamer presentation, and I use tikzpicture and itemize very often, I am really tired of typing in \begin{} \end{} stuff every time. And I am really lazy (I believe you have guessed by now how much). So does it hurt to use \btkz and \etkz as above?? Would it lead me into some trouble at som stage?
\newcommand\btkz[1][]{\begin{tikzpicture}[#1]}so\btkzhas an optional argument to pass options to thetikzpicture. – Gonzalo Medina Aug 14 '14 at 02:12\btkzwith\begin{tikzpicture}, etc., to preserve the mark-up structure. – n.r. Aug 14 '14 at 02:16\btkz[...]would also expand to\begin{tikzpicture}[...]. I would say it's mostly a matter of taste. – Bruno Le Floch Aug 16 '14 at 21:30\tikz node {Hello world};shorthand that can be used – user202729 Oct 26 '22 at 05:29