# HG changeset patch # User Steve Losh # Date 1694294546 14400 # Node ID 55eda9a9e84427f5ce460ce8078d86be16914d27 # Parent d7573b5f63e992a9b9858af5aea82ca9baf01b65 Update diff -r d7573b5f63e9 -r 55eda9a9e844 README.markdown --- a/README.markdown Sat Sep 09 00:29:13 2023 -0400 +++ b/README.markdown Sat Sep 09 17:22:26 2023 -0400 @@ -1254,3 +1254,14 @@ Finished homework 2 as well, just to get it out of the way. Or at least I thought I did, except there are apparently Surprise Questions™ not in the book to do with R. I'll do that this weekend. + +## 2023-09-09 + +Actually finished BS521 homework 2. Realized my Latex `\code` shortcut was +broken: + + % Broken, doesn't scope the \small so later text is changed. + \def\code#1{\small\texttt{#1}} + + % Fixed v v + \def\code#1{{\small\texttt{#1}}}