Initial commit

This commit is contained in:
Leni Aniva 2024-10-21 12:18:24 -07:00
commit 97137b2012
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
5 changed files with 38 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.*
!.gitignore
!.latexmkrc
/build

1
.latexmkrc Normal file
View File

@ -0,0 +1 @@
$out_dir = 'build';

1
README.md Normal file
View File

@ -0,0 +1 @@
# Pattern Drafting Tutorial

7
pattern-common.sty Normal file
View File

@ -0,0 +1,7 @@
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz}
\usetikzlibrary{
calc,
positioning,
shapes.misc,
}

24
slopers.tex Normal file
View File

@ -0,0 +1,24 @@
\documentclass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{pattern-common}
\begin{document}
\title{Slopers Tutorial}
\author{Leni Aniva}
\date{Fall 2024}
\maketitle
\section{Skirt Sloper}
\begin{center}
\begin{tikzpicture}
\coordinate (wm) at (0,0);
\coordinate (hm) at (0,-5);
\node[left] at (wm) {Waist Middle};
\node[left] at (hm) {Hem Middle};
\draw (wm) -- (hm);
\end{tikzpicture}
\end{center}
\end{document}