Initial commit
This commit is contained in:
commit
97137b2012
|
@ -0,0 +1,5 @@
|
|||
.*
|
||||
!.gitignore
|
||||
!.latexmkrc
|
||||
|
||||
/build
|
|
@ -0,0 +1 @@
|
|||
$out_dir = 'build';
|
|
@ -0,0 +1,7 @@
|
|||
\usepackage[dvipsnames]{xcolor}
|
||||
\usepackage{tikz}
|
||||
\usetikzlibrary{
|
||||
calc,
|
||||
positioning,
|
||||
shapes.misc,
|
||||
}
|
|
@ -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}
|
Loading…
Reference in New Issue