From 64346dfa28686ac55f4ca2ea7eaca16c41937ad7 Mon Sep 17 00:00:00 2001 From: PH-KDX <50588793+PH-KDX@users.noreply.github.com> Date: Wed, 18 May 2022 22:30:53 +0200 Subject: Add amsmath support Amsmath is a widely used package for things such as including text in equations or aligning multiple equations. This PR includes it in the default LaTeX template so that p-eople can use Amsmath commands in the .latex command. --- bot/resources/fun/latex_template.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/bot/resources/fun/latex_template.txt b/bot/resources/fun/latex_template.txt index a20cc279..7c99879f 100644 --- a/bot/resources/fun/latex_template.txt +++ b/bot/resources/fun/latex_template.txt @@ -1,4 +1,5 @@ \documentclass{article} +\usepackage{amsmath} \begin{document} \pagenumbering{gobble} $text -- cgit v1.2.3 From 3ee0f699124615ffce3d12ed2c10e869e2f218d0 Mon Sep 17 00:00:00 2001 From: PH-KDX <50588793+PH-KDX@users.noreply.github.com> Date: Mon, 30 May 2022 10:17:06 +0200 Subject: Add amssymb package Co-authored-by: Shakya Majumdar --- bot/resources/fun/latex_template.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/resources/fun/latex_template.txt b/bot/resources/fun/latex_template.txt index 7c99879f..40f32e13 100644 --- a/bot/resources/fun/latex_template.txt +++ b/bot/resources/fun/latex_template.txt @@ -1,5 +1,5 @@ \documentclass{article} -\usepackage{amsmath} +\usepackage{amsmath, amssymb} \begin{document} \pagenumbering{gobble} $text -- cgit v1.2.3