55eda9a9e844

Update
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Sat, 09 Sep 2023 17:22:26 -0400
parents d7573b5f63e9
children 0ffffdee9180
branches/tags (none)
files README.markdown

Changes

--- 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}}}