-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfullshort.sty
More file actions
25 lines (22 loc) · 901 Bytes
/
fullshort.sty
File metadata and controls
25 lines (22 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %%
%% Version control %%
%% %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\RequirePackage{ifthen}
\newboolean{fullpaper}
\RequirePackage{moreverb}
\newenvironment{full}
{\ifthenelse{\boolean{fullpaper}}{}{\comment}}
{\ifthenelse{\boolean{fullpaper}}{}{\endcomment}}
\newenvironment{short}
{\ifthenelse{\boolean{fullpaper}}{\comment}{}}
{\ifthenelse{\boolean{fullpaper}}{\endcomment}{}}
\newcommand{\ifshort}[1]{\ifthenelse{\boolean{fullpaper}}{}{#1}}
\newcommand{\iffull}[1]{\ifthenelse{\boolean{fullpaper}}{#1}{}}
\newcommand{\shortfull}[2]{\ifthenelse{\boolean{fullpaper}}{#2}{#1}}
\newcommand{\fullshort}[2]{\ifthenelse{\boolean{fullpaper}}{#1}{#2}}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: