From 7cb34b70d787d11a35db47000878934395d91a8c Mon Sep 17 00:00:00 2001 From: mmcky Date: Fri, 8 Jan 2021 10:39:22 +1100 Subject: [PATCH 1/2] add Macro syntax for argmax and argmin --- lectures/_config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lectures/_config.yml b/lectures/_config.yml index 7c523f551..f22ae34ee 100644 --- a/lectures/_config.yml +++ b/lectures/_config.yml @@ -26,6 +26,11 @@ sphinx: og_logo_url: https://assets.quantecon.org/img/qe-og-logo.png description: This website presents a set of lectures on quantitative economic modeling, designed and written by Thomas J. Sargent and John Stachurski. keywords: Python, QuantEcon, Quantitative Economics, Economics, Sloan, Alfred P. Sloan Foundation, Tom J. Sargent, John Stachurski + mathjax_config: + TeX: + Macros: + "argmax" : "arg\,max" + "argmin" : "arg\,min" rediraffe_redirects: index_toc.md: intro.md tojupyter_static_file_path: ["source/_static", "_static"] From cc9b96fc432f869d4f46bd1b4bcc1596368c422d Mon Sep 17 00:00:00 2001 From: mmcky Date: Fri, 8 Jan 2021 10:47:05 +1100 Subject: [PATCH 2/2] add escape chars --- lectures/_config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lectures/_config.yml b/lectures/_config.yml index f22ae34ee..1ec45d1ad 100644 --- a/lectures/_config.yml +++ b/lectures/_config.yml @@ -29,8 +29,8 @@ sphinx: mathjax_config: TeX: Macros: - "argmax" : "arg\,max" - "argmin" : "arg\,min" + "argmax" : "arg\\,max" + "argmin" : "arg\\,min" rediraffe_redirects: index_toc.md: intro.md tojupyter_static_file_path: ["source/_static", "_static"]