Last active
October 27, 2017 13:59
-
-
Save intv0id/5c9d8ade283b4b1db55021a2d3a5b52d to your computer and use it in GitHub Desktop.
[Defining Commands in LaTeX] #Commands #LaTeX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%VARS | |
\def\Variable{Content} | |
%FUNCS | |
\newcommand{\Command1}{Contenu} | |
\newcommand{\Command2}[NbVar]{#1 #2 #3} | |
%USE CASE | |
\Variable | |
\Command1 | |
\Command2{x}{y}{z} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment