diff --git a/docs/examples/basics/glide_computer.rst b/docs/examples/basics/glide_computer.rst index b4139cc2..002d9a2e 100644 --- a/docs/examples/basics/glide_computer.rst +++ b/docs/examples/basics/glide_computer.rst @@ -16,7 +16,7 @@ This example presents the usage of: .. literalinclude:: ../../../example/glide_computer/include/glide_computer.h :caption: glide_computer.h :start-at: #include - :end-before: using namespace units; + :end-at: // - flight path exactly on a shortest possible line to destination :linenos: :lineno-match: @@ -37,7 +37,7 @@ For example we have 3 for a quantity of length: .. literalinclude:: ../../../example/glide_computer/include/glide_computer.h :caption: glide_computer.h - :start-at: using namespace units; + :start-after: // - flight path exactly on a shortest possible line to destination :end-before: // text output :linenos: :lineno-match: diff --git a/docs/examples/kalman_filter/example_7.rst b/docs/examples/kalman_filter/example_7.rst index 586a271c..ea5abef8 100644 --- a/docs/examples/kalman_filter/example_7.rst +++ b/docs/examples/kalman_filter/example_7.rst @@ -1,5 +1,5 @@ Example 7 - Estimating the temperature of the heating liquid I -============================================================= +============================================================== Implementation of: https://www.kalmanfilter.net/kalman1d.html#ex7 diff --git a/docs/examples/kalman_filter/example_8.rst b/docs/examples/kalman_filter/example_8.rst index f59b01c9..87c1b0cb 100644 --- a/docs/examples/kalman_filter/example_8.rst +++ b/docs/examples/kalman_filter/example_8.rst @@ -1,5 +1,5 @@ Example 8 - Estimating the temperature of the heating liquid II -============================================================== +=============================================================== Implementation of: https://www.kalmanfilter.net/kalman1d.html#ex8 diff --git a/docs/framework/quantities.rst b/docs/framework/quantities.rst index 9ad71b36..71bd8858 100644 --- a/docs/framework/quantities.rst +++ b/docs/framework/quantities.rst @@ -553,7 +553,7 @@ units like CGS. .. seealso:: - Please refer to :ref:`examples/avg_speed:avg_speed` example for more + Please refer to :ref:`examples/basics/avg_speed:avg_speed` example for more information on different kinds of interfaces supported by the library. diff --git a/docs/framework/quantity_kinds.rst b/docs/framework/quantity_kinds.rst index b04352dc..9d908b24 100644 --- a/docs/framework/quantity_kinds.rst +++ b/docs/framework/quantity_kinds.rst @@ -73,5 +73,5 @@ Now ``x`` coordinates can be constructed:: .. seealso:: - Please refer to :ref:`examples/glide_computer:glide_computer` example for more + Please refer to :ref:`examples/basics/glide_computer:glide_computer` example for more information on the quantity kinds usage. diff --git a/docs/use_cases/custom_representation_types.rst b/docs/use_cases/custom_representation_types.rst index fa967452..5a733f5b 100644 --- a/docs/use_cases/custom_representation_types.rst +++ b/docs/use_cases/custom_representation_types.rst @@ -305,4 +305,4 @@ representation types with:: For more examples of custom representation types usage please refer to the :ref:`use_cases/linear_algebra:Linear Algebra vs. Quantities` chapter and the - :ref:`examples/measurement:measurement` example. + :ref:`examples/custom_representation/measurement:measurement` example. diff --git a/docs/use_cases/linear_algebra.rst b/docs/use_cases/linear_algebra.rst index f1f66f37..edefb482 100644 --- a/docs/use_cases/linear_algebra.rst +++ b/docs/use_cases/linear_algebra.rst @@ -85,4 +85,4 @@ output: .. seealso:: For more examples of Linear Algebra definition and operations please refer to - the :ref:`examples/linear_algebra:linear_algebra` example. + the :ref:`examples/custom_representation/linear_algebra:linear_algebra` example. diff --git a/docs/use_cases/unknown_dimensions.rst b/docs/use_cases/unknown_dimensions.rst index 4ef6e262..d23e227f 100644 --- a/docs/use_cases/unknown_dimensions.rst +++ b/docs/use_cases/unknown_dimensions.rst @@ -87,7 +87,7 @@ following:: .. seealso:: Another good example of unknown dimension usage can be found in the - :ref:`examples/box_example:box_example`:: + :ref:`examples/basics/box_example:box_example`:: std::cout << "float rise rate = " << box.fill_level(measured_mass) / fill_time << '\n';