From 49adb273d8d347550d4730de9f7939c552a4843e Mon Sep 17 00:00:00 2001 From: nuluh Date: Wed, 14 May 2025 12:21:21 +0700 Subject: [PATCH] fix(latex): fix equation numbering to include chapter prefix in arabic Closes #62 --- latex/thesis.cls | 1 + 1 file changed, 1 insertion(+) diff --git a/latex/thesis.cls b/latex/thesis.cls index 227bc91..29a6b29 100644 --- a/latex/thesis.cls +++ b/latex/thesis.cls @@ -124,6 +124,7 @@ % Change figure numbering to include chapter (e.g., Figure 1.1, 1.2...) \renewcommand{\thefigure}{\arabic{chapter}.\arabic{figure}} \renewcommand{\thetable}{\arabic{chapter}.\arabic{table}} +\renewcommand{\theequation}{\arabic{chapter}.\arabic{equation}} % Table of Content (TOC) Title styling \renewcommand{\contentsname}{DAFTAR ISI}