diff options
author | grr <grr@lo2.org> | 2024-07-02 06:08:12 -0400 |
---|---|---|
committer | grr <grr@lo2.org> | 2024-07-02 06:08:12 -0400 |
commit | fd62335f740d6c90ae361ba7e3b5d562485e2af3 (patch) | |
tree | c6e99b5db3ad3a1c3d3cc36bc1c96a0948a885d6 /screed.sty | |
parent | 6098d184521764cbd29b682605b0455df7f558d2 (diff) | |
download | blueprint-fd62335f740d6c90ae361ba7e3b5d562485e2af3.tar.gz |
truly unsure what im doing anymore
Diffstat (limited to 'screed.sty')
-rw-r--r-- | screed.sty | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/screed.sty b/screed.sty new file mode 100644 index 0000000..f6b7bfa --- /dev/null +++ b/screed.sty @@ -0,0 +1,49 @@ +% making latex actually work for me +% === counters + +% === toc primitives +\newcommand\rTocChp[1]{Ignore me} +\newcommand\rTocPrt[1]{Ignore me} + +% === header primitives +\newcommand\rHdrChp[1]{Ignore me} +\newcommand\rHdrPrt[1]{Ignore me} + +% === page primitives +\newcommand\rPageChp[1]{ +Page Chapter: #1}% {\raggedleft \parbox{3in}{ {\Large \value{ThaChp} --- } \parbox{2.5in}{ \raggedleft \itshape #1}}\par}} + +\newcommand\rPagePrt[1]{ + {\centering + {\Large \Roman{\value{ThaPrt}} + + {\large \scshape #1 } \par}}} +% === divisions +% --- Prt / part +\newcommand\Prt[3]{ + \stepcounter{ThaPrt} + \rPagePrt{#1} + \rTocPrt{#2} + \rHdrPrt{#3} + \stepcounter{ThaPrt}} + +% --- Chp / chapter +\newcommand\Chp[3]{ + \stepcounter{ThaChp} + \rPageChp{#1} + \rTocChp{#1} + \rHdrChp{#1}} + +% --- Sec / section +% --- Ssc / subsection + +% ==== other screedshit +\newcommand\stress[1]{\textbf{#1}} + +% === initshit +\newcommand\LETSGOOOO{ + \begin{document} + + % initialize counters + \newcounter{ThaPrt} + \newcounter{ThaChp}{ThaPrt}} |