From 9523881ef4d41ee4a1de84cce40d28b899842a09 Mon Sep 17 00:00:00 2001 From: Mark Date: Wed, 22 Jan 2025 21:18:26 -0800 Subject: [PATCH] Convert "Fuse Timers" to typst --- src/Warm-Ups/Fuse Timers/main.tex | 31 ------------------------------- src/Warm-Ups/Fuse Timers/main.typ | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 31 deletions(-) delete mode 100755 src/Warm-Ups/Fuse Timers/main.tex create mode 100644 src/Warm-Ups/Fuse Timers/main.typ diff --git a/src/Warm-Ups/Fuse Timers/main.tex b/src/Warm-Ups/Fuse Timers/main.tex deleted file mode 100755 index b0c5d1a..0000000 --- a/src/Warm-Ups/Fuse Timers/main.tex +++ /dev/null @@ -1,31 +0,0 @@ -\documentclass[ - solutions, - hidewarning, - singlenumbering, - nopagenumber -]{../../../lib/tex/ormc_handout} -\usepackage{../../../lib/tex/macros} - - - -\title{Warm-Up: Fuse Timers} -\uptitler{\smallurl{}} -\subtitle{Prepared by Mark on \today.} - -\begin{document} - - \maketitle - - - \problem{} - Suppose we have two strings and a lighter. Each string takes an hour to fully burn. \par - However, we do not know how fast each part of the string burns: - half might burn in 1 minute, and the rest could take 59. - - \vspace{2mm} - - How would we measure exactly 45 minutes using these strings? - - \vfill - -\end{document} \ No newline at end of file diff --git a/src/Warm-Ups/Fuse Timers/main.typ b/src/Warm-Ups/Fuse Timers/main.typ new file mode 100644 index 0000000..48cb0fa --- /dev/null +++ b/src/Warm-Ups/Fuse Timers/main.typ @@ -0,0 +1,15 @@ +#import "@local/handout:0.1.0": * + +#show: handout.with( + title: [Warm-Up: Fuse Timers], + by: "Mark", +) + +#problem() +Suppose we have two strings and a lighter. Each string takes exactly an hour to fully burn. \ +However, we do not know how fast each part of the string burns: +half might burn in 1 minute, and the rest could take 59. + +#v(2mm) + +How can we measure exactly 45 minutes using these two strings?