From 239f16448f22344593042fa9d66414932d40e52e Mon Sep 17 00:00:00 2001
From: Miguel Angel Reina Ortega <miguelangel.reinaortega@etsi.org>
Date: Wed, 27 Nov 2024 14:10:05 +0000
Subject: [PATCH] Update grid table examples

---
 Specification drafting guidelines.md | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/Specification drafting guidelines.md b/Specification drafting guidelines.md
index 8521866..953ed21 100644
--- a/Specification drafting guidelines.md	
+++ b/Specification drafting guidelines.md	
@@ -104,13 +104,31 @@ Formulas and equations can be specified using LaTeX syntax within the markdown s
 
 	$$My formula$$
 
-	E.g.
+Examples:
 
+```latex
 	$\left[\int_{-infty}^{\infty} f(x) \; dx\right]$
-
+```
 $$\left[\int_{-infty}^{\infty} f(x) \; dx\right]$$
 
+```latex
+$$ f(n) =
+\begin{cases}
+n/2       & \quad \text{if } n \text{ is even}\\
+-(n+1)/2  & \quad \text{if } n \text{ is odd}
+\end{cases}
+$$
+```
+$$ f(n) =
+  \begin{cases}
+    n/2       & \quad \text{if } n \text{ is even}\\
+    -(n+1)/2  & \quad \text{if } n \text{ is odd}
+  \end{cases}
+$$
 More detailed information about formulas (operators, symbols, equations, ...) can be found at [LaTeX documentation](https://en.wikibooks.org/wiki/LaTeX/Mathematics)
 
 ## Anchors
 
+## Notes
+
+
-- 
GitLab