Convert warm-ups to typst #2

Merged
Mark merged 19 commits from warmups into main 2025-01-24 22:41:36 -08:00
2 changed files with 10 additions and 22 deletions
Showing only changes of commit 5121f74bde - Show all commits

View File

@ -1,22 +0,0 @@
\documentclass[
solutions,
hidewarning,
singlenumbering,
nopagenumber
]{../../../lib/tex/ormc_handout}
\usepackage{../../../lib/tex/macros}
\title{Warm-Up: \texttt{fmod}}
\uptitler{\smallurl{}}
\subtitle{Prepared by Mark on \today.}
\begin{document}
\maketitle
\problem{}
I'm sure you're all familiar with how \texttt{mod(a, b)} and \texttt{remainder(a, b)} work with integers. \par
Devise an equivalent for floats (i.e, real numbers).
\end{document}

View File

@ -0,0 +1,10 @@
#import "@local/handout:0.1.0": *
#show: handout.with(
title: [Warm-Up: `fmod`],
by: "Mark",
)
#problem()
I'm sure you're all familiar with how `mod(a, b)` and `remainder(a, b)` \ work when `a` and `b` are integers.
Devise an equivalent for floats (i.e, real numbers).