diff --git a/38331-i00.md b/38331-i00.md index 7528b2c7be9b2b7685109549da160ca42bd9edc5..f6ed7fda5a40809b34d00aee7a97af5c25688740 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. diff --git a/scripts/msc_to_img.lua b/scripts/msc_to_img.lua index bdfea6b42184ca3b40335ae819ebe6f04d93907f..25e23dbab8db2550026ff748d1bf59af4babdcd3 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()