Mark f5f5fdb88c
Some checks failed
CI / Typst formatting (push) Successful in 9s
CI / Typos (push) Successful in 13s
CI / Build (push) Failing after 9m20s
FIR draft
2025-01-22 12:37:56 -08:00

84 lines
1.5 KiB
TeX
Executable File

% use [nosolutions] flag to hide solutions.
% use [solutions] flag to show solutions.
\documentclass[
singlenumbering,
solutions
]{../../resources/ormc_handout}
\usepackage{../../resources/macros}
\usepackage{pdfpages}
\usepackage{sliderule}
\usepackage{changepage}
\usepackage{listings}
% Args:
% x, top scale y, label
\newcommand{\slideruleind}[3]{
\draw[
line width=1mm,
draw=black,
opacity=0.3,
text opacity=1
]
({#1}, {#2 + 1})
--
({#1}, {#2 - 1.1})
node [below] {#3};
}
\uptitlel{Advanced 2}
\uptitler{\smallurl{}}
\title{Fast Inverse Square Root}
\subtitle{Prepared by Mark on \today}
\begin{document}
\maketitle
\begin{center}
\begin{minipage}{6cm}
Dad says that anyone who can't use
a slide rule is a cultural illiterate
and should not be allowed to vote.
\vspace{1ex}
\textit{Have Space Suit --- Will Travel, 1958}
\end{minipage}
\end{center}
\hfill
%\input{parts/0 logarithms.tex}
%\input{parts/1 intro.tex}
%\input{parts/2 multiplication.tex}
%\input{parts/3 division.tex}
\pagebreak
\input{parts/4 float.tex}
\input{parts/5 approximate.tex}
\input{parts/6 quake.tex}
% Make sure the slide rule is on an odd page,
% so that double-sided prints won't require
% students to tear off problems.
\checkoddpage
\ifoddpage\else
\vspace*{\fill}
\begin{center}
{
\Large
\textbf{This page unintentionally left blank.}
}
\end{center}
\vspace{\fill}
\pagebreak
\fi
%\includepdf[
% pages=1,
% fitpaper=true
%]{resources/rule.pdf}
\end{document}