From b71c2660226678d6df7440cff3b9c82b85fdb7d3 Mon Sep 17 00:00:00 2001 From: Mark Date: Wed, 5 Feb 2025 15:08:06 -0800 Subject: [PATCH] docs-latex draft --- docs-latex.md | 102 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 docs-latex.md diff --git a/docs-latex.md b/docs-latex.md new file mode 100644 index 0000000..9d06cee --- /dev/null +++ b/docs-latex.md @@ -0,0 +1,102 @@ +- comments package breaks when not using xelatex +- Install latex-workshop + +# 📜 Class Documentation + +The class `ormc_handout` is based on `article.cls`, and should work with most LaTeX packages. It has everything you need and nothing you don't; it looks pretty and it is optimized for greyscale printing. + +If you find something broken, please tell me so I may try to fix it. + + + +## 🎏 Arguments + +These are passed to `\documentclass`, as follows: +```latex +% Documentclass argument example +\documentclass[ + nosolutions, + shortwarning +]{ormc_handout} +``` + +- `10pt`, `11pt`, `12pt`:\ + Default: `10pt`. Sets font size. + +- `pagenumber`, `nopagenumber`:\ + Default: `pagenumber`. Shows or hides page numbers. + +- `solutions`, `nosolutions`:\ + Default: `solutions`\ + If `nosolutions` is passed, `solution` and `instructornote` environments are hidden. + +- `showwarning`, `hidewarning`:\ + Default: `showwarning`. Shows or hides instructor handout warning. + +- `shortwarning`, `longwarning`:\ + Default: `longwarning`. Sets instructor handout warning type. + +- `multinumbering`, `singlenumbering`:\ + Default: `multinumbering`\ + How problems, theorems, etc should be numbered. If `mulitnumbering` is passed, problems, theorems, etc will be numbered independently. If `singlenumbering` is passed, one global counter will be used. (I think `singlenumering` is better, it makes the handout easier to navigate.) + +Use `geometry` to change page lengths. Letter paper is the default. + + + + +## 🪖 Commands & More: +`ormc_handout` automatically includes `tcolorbox`, `xcolor`, `tikz`, `amsmath`, `amssymb`. \ +It also includes a few other packages that are used internally and shouldn't have an effect on most workflows. + + + +### **Basics:** + +- `\say{text}`: Puts text in quotes, handling details like period spacing. Courtesy of `dirtytalk`. +- `\tab`: Typewriter-style tabs every `1cm`. Courtesy of `tabto`. +- `\maketitle`: Makes a title. This is never placed on a separate page. + - Set title data with the following commands:\ + `\title{text}`, `\subtitle{text}`, `\uptitlel{text}`, `\uptitler{text}`\ + `\uptitlel` and `\uptitler` are optional, but usually come together. +- `\note[Type]{text}`: Makes a note. +- `\hint{text}`: Shorthand for `\note[Hint]{text}` + + + +### **Sectioning:** + +The usual LaTeX title-customization techniques *WILL NOT WORK* with this class.\ +Don't even try to load `titlesec`. + +- `\section{title}