diff --git a/docs/src/spatial_modelling/lattice_reaction_systems.md b/docs/src/spatial_modelling/lattice_reaction_systems.md
index 67ae8fcaa0..c5fcfd6ce7 100644
--- a/docs/src/spatial_modelling/lattice_reaction_systems.md
+++ b/docs/src/spatial_modelling/lattice_reaction_systems.md
@@ -57,6 +57,14 @@ Finally, we can access "$X1$'s value across the simulation using
```@example spatial_intro_basics
lat_getu(sol, :X1, lrs)
```
+and plot the simulation using
+```@example spatial_intro_basics
+import CairoMakie
+lattice_animation(sol, :X1, lrs, "lattice_simulation_2d.mp4")
+```
+```@raw html
+
+```
More information on how to retrieve values from spatial simulations can be found [here](@ref lattice_simulation_structure_interaction_simulation_species), and for plotting them, [here](@ref lattice_simulation_plotting). Finally, a list of functions for querying `LatticeReactionSystems` for various properties can be found [here](@ref api_lattice_simulations).
## [Spatial reactions](@id spatial_lattice_modelling_intro_spatial_reactions)
diff --git a/docs/src/spatial_modelling/lattice_simulation_plotting.md b/docs/src/spatial_modelling/lattice_simulation_plotting.md
index e371ba2712..4470108612 100644
--- a/docs/src/spatial_modelling/lattice_simulation_plotting.md
+++ b/docs/src/spatial_modelling/lattice_simulation_plotting.md
@@ -47,7 +47,7 @@ If we instead wish to create an animation of our solution across the entire simu
lattice_animation(sol, :X1, lrs, "lattice_simulation_1d.mp4")
```
```@raw html
-
+
```
Since we animate the solution across the entire simulation, we do not need to provide a `t` value. However, there are some additional (optional) arguments we might wish to provide:
- `nframes = 200`: The number of frames in the animation (these are evenly samples across the simulation).
@@ -91,7 +91,7 @@ An animation of the solution can be created in a similar manner as for [the one-
lattice_animation(sol, :X, lrs, "lattice_simulation_2d.mp4")
```
```@raw html
-
+
```
Again, please check the API pages for the [`lattice_plot`](@ref) and [`lattice_animation`](@ref) functions to see more details of their various options.