mv comma initializer to page 1
diff --git a/doc/C01_TutorialMatrixClass.dox b/doc/C01_TutorialMatrixClass.dox
index fe356c1..2d84cd7 100644
--- a/doc/C01_TutorialMatrixClass.dox
+++ b/doc/C01_TutorialMatrixClass.dox
@@ -16,6 +16,7 @@
   - \ref TutorialMatrixDynamic
   - \ref TutorialMatrixConstructors
   - \ref TutorialMatrixCoeffAccessors
+  - \ref TutorialMatrixCommaInitializer
   - \ref TutorialMatrixSizesResizing
   - \ref TutorialMatrixAssignment
   - \ref TutorialMatrixFixedVsDynamic
@@ -144,6 +145,14 @@
 take more than one argument. We restrict operator[] to vectors, because an awkwardness in the C++ language
 would make matrix[i,j] compile to the same thing as matrix[j] !
 
+\section TutorialMatrixCommaInitializer Comma-initialization
+
+Matrix and vector coefficients can be conveniently set using the so-called \em comma-initializer syntax.
+For now, it is enough to know this example:
+\include Tutorial_commainit_01.cpp
+Output: \verbinclude Tutorial_commainit_01.out
+The right hand side can also contains matrix expressions as discussed in \ref TutorialAdvancedInitialization "this page".
+
 \section TutorialMatrixSizesResizing Resizing
 
 The current sizes can be retrieved by rows(), cols() and size(). Resizing a dynamic-size matrix is done by the resize() method.