about summary refs log tree commit diff
path: root/users/grfn/resume/tweaklist.sty
diff options
context:
space:
mode:
authorAspen Smith <grfn@gws.fyi>2024-02-12T03·00-0500
committerclbot <clbot@tvl.fyi>2024-02-14T19·37+0000
commit82ecd61f5c699cf3af6c4eadf47a1c52b1d696c6 (patch)
tree429c5e078528000591742ec3211bc768ae913a78 /users/grfn/resume/tweaklist.sty
parent0ba476a4266015f278f18d74094299de74a5a111 (diff)
chore(users): grfn -> aspen r/7511
Change-Id: I6c6847fac56f0a9a1a2209792e00a3aec5e672b9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10809
Autosubmit: aspen <root@gws.fyi>
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Reviewed-by: lukegb <lukegb@tvl.fyi>
Diffstat (limited to 'users/grfn/resume/tweaklist.sty')
-rw-r--r--users/grfn/resume/tweaklist.sty56
1 files changed, 0 insertions, 56 deletions
diff --git a/users/grfn/resume/tweaklist.sty b/users/grfn/resume/tweaklist.sty
deleted file mode 100644
index adc9398932..0000000000
--- a/users/grfn/resume/tweaklist.sty
+++ /dev/null
@@ -1,56 +0,0 @@
-%% start of file `tweaklist.sty'.
-%% Original by Jakob Schiøtz, downloaded from http://dcwww.camd.dtu.dk/~schiotz/comp/LatexTips/tweaklist.sty; not found on ctan.
-%% Modified by Xavier Danaux (xdanaux@gmail.com).
-%
-% The tweaklist.sty package redefines the itemize, enumerate and description packages, so that all parameters can be adjusted.
-% This was done by copying the original definitions, and adding "hook commands" that are executed when entering the environment.
-% The hook commands are initially empty, but can be redefined with \renewcommand.
-%
-% This work may be distributed and/or modified under the
-% conditions of the LaTeX Project Public License version 1.3c,
-% available at http://www.latex-project.org/lppl/.
-
-
-% hooks for the itemize environment
-\def\itemhook{}
-\def\itemhooki{}
-\def\itemhookii{}
-\def\itemhookiii{}
-\def\itemhookiv{}
-% hooks for the enumerate environment
-\def\enumhook{}
-\def\enumhooki{}
-\def\enumhookii{}
-\def\enumhookiii{}
-\def\enumhookiv{}
-% hook for the description environment
-\def\deschook{}
-% original environment definitions, with hooks added
-\def\enumerate{%
-  \ifnum \@enumdepth >\thr@@\@toodeep\else
-    \advance\@enumdepth\@ne
-    \edef\@enumctr{enum\romannumeral\the\@enumdepth}%
-      \expandafter
-      \list
-        \csname label\@enumctr\endcsname
-        {%
-          \enumhook \csname enumhook\romannumeral\the\@enumdepth\endcsname%
-          \usecounter\@enumctr\def\makelabel##1{\hss\llap{##1}}%
-        }%
-  \fi}
-\def\itemize{%
-  \ifnum \@itemdepth >\thr@@\@toodeep\else
-    \advance\@itemdepth\@ne
-    \edef\@itemitem{labelitem\romannumeral\the\@itemdepth}%
-    \expandafter
-    \list
-      \csname\@itemitem\endcsname
-      {%
-        \itemhook \csname itemhook\romannumeral\the\@itemdepth\endcsname%
-        \def\makelabel##1{\hss\llap{##1}}%
-      }%
-  \fi}
-\newenvironment{description}
-  {\list{}{\deschook\labelwidth\z@ \itemindent-\leftmargin
-           \let\makelabel\descriptionlabel}}
-  {\endlist}