From 7885a01d053da46b9deb8c5187dabf33b4028674 Mon Sep 17 00:00:00 2001
From: Umesh Phuyal <uphuyal@qti.qualcomm.com>
Date: Thu, 13 Mar 2025 13:22:13 -0700
Subject: [PATCH 1/2] Adding missing inequalities D1-1, D1-2, D1-3, D1-4

---
 38331-i00.md | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/38331-i00.md b/38331-i00.md
index 7528b2c..f6ed7fd 100644
--- a/38331-i00.md
+++ b/38331-i00.md
@@ -15318,12 +15318,20 @@ The UE shall:
 
 Inequality D1-1 (Entering condition 1)
 
+$$Ml1 - Hys > Thresh1$$
+
 Inequality D1-2 (Entering condition 2)
 
+$$Ml2 + Hys <> Thresh2$$
+
 Inequality D1-3 (Leaving condition 1)
 
+$$Ml1 + Hys < Thresh1$$
+
 Inequality D1-4 (Leaving condition 2)
 
+$$Ml2 - Hys > Thresh2$$
+
 The variables in the formula are defined as follows:
 
 ***Ml1*** is the distance between UE and a reference location for this event (i.e. *referenceLocation1* as defined within *reportConfigNR* for this event), not taking into account any offsets.
-- 
GitLab


From d20b2ea92a0066ab1b020ecb59aa6297c7eb5b3a Mon Sep 17 00:00:00 2001
From: Umesh Phuyal <uphuyal@qti.qualcomm.com>
Date: Thu, 13 Mar 2025 16:06:12 -0700
Subject: [PATCH 2/2] Add the option --nocopyright in mscgenToPng

---
 scripts/msc_to_img.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/msc_to_img.lua b/scripts/msc_to_img.lua
index bdfea6b..25e23db 100644
--- a/scripts/msc_to_img.lua
+++ b/scripts/msc_to_img.lua
@@ -4,7 +4,7 @@
 
 local function mscgenToPng(mscgen, charttype)
 	local fname = "tmp.png"
-	local png = pandoc.pipe("mscgen", {"-T", "png", "-q", "-o", fname, "-S", charttype}, mscgen)
+	local png = pandoc.pipe("mscgen", {"-T", "png", "-q", "-o", fname, "-S", charttype, "--nocopyright"}, mscgen)
 	local f = io.open(fname, "rb")
 	local contents = f:read "*a"
 	f:close()
-- 
GitLab