diff --git a/_posts/2023-09-21-stars-parallel.markdown b/_posts/2023-09-21-stars-parallel.markdown
index 93389f8..a5f83ad 100644
--- a/_posts/2023-09-21-stars-parallel.markdown
+++ b/_posts/2023-09-21-stars-parallel.markdown
@@ -62,8 +62,8 @@ Since this data does not fit in memory, we have to load it as a proxy
 (actually, we will only load the metadata describing these rasters). To
 do this, we use the `read_stars()` function with the arguments
 `proxy = TRUE` and `along = 3`. This second argument will cause the
-bands (layers) to be combined into a three-dimensional matrix:
-\[*l**o**n**g**i**t**u**d**e*, *l**a**t**i**t**u**d**e*, *s**p**e**c**t**r**a**l* *b**a**n**d*\].
+bands (layers) to be combined into a three-dimensional array:
+[longitude, latitude, spectral band].
 
     rasters = read_stars(files, proxy = TRUE, along = 3)
 
diff --git a/_rmd/2023-09-21-stars-parallel.Rmd b/_rmd/2023-09-21-stars-parallel.Rmd
index ceca69b..d0d538e 100644
--- a/_rmd/2023-09-21-stars-parallel.Rmd
+++ b/_rmd/2023-09-21-stars-parallel.Rmd
@@ -62,7 +62,7 @@ Since this data does not fit in memory, we have to load it as a proxy (actually,
 we will only load the metadata describing these rasters). To do this, we use the
 `read_stars()` function with the arguments `proxy = TRUE` and `along = 3`. This
 second argument will cause the bands (layers) to be combined into a
-three-dimensional matrix: $[longitude, \ latitude, \ spectral \ band]$.
+three-dimensional array: [longitude, latitude, spectral band].
 
 ```{r}
 rasters = read_stars(files, proxy = TRUE, along = 3)