diff --git a/doc/TutorialBlockOperations.dox b/doc/TutorialBlockOperations.dox
index a2d8c97cc..df277482c 100644
--- a/doc/TutorialBlockOperations.dox
+++ b/doc/TutorialBlockOperations.dox
@@ -167,6 +167,20 @@ matrix.rightCols(q);\endcode
\code
matrix.rightCols();\endcode |
+%Block containing the q columns starting from i
+ \link DenseBase::middleCols() * \endlink |
+ \code
+matrix.middleCols(i,q);\endcode |
+ \code
+matrix.middleCols(i);\endcode |
+
+%Block containing the q rows starting from i
+ \link DenseBase::middleRows() * \endlink |
+ \code
+matrix.middleRows(i,q);\endcode |
+ \code
+matrix.middleRows(i);\endcode |
+
Here is a simple example illustrating the use of the operations presented above: