Index: doc/theses/jiada_liang_MMath/Cenum.tex
===================================================================
--- doc/theses/jiada_liang_MMath/Cenum.tex	(revision cdbb909ded4bb5325b86d9b815ce893c0854ec8c)
+++ doc/theses/jiada_liang_MMath/Cenum.tex	(revision 508cff026f51f3c569af15b678037daae167ad0b)
@@ -87,6 +87,7 @@
 \end{cfa}
 
-Note, \CC has the same safe restriction~\cite[C.1.5.7.2]{C++} and provides the same workaround cast.
-\begin{description}[parsep=0pt]
+Note, \CC has the same safe restriction and provides the same workaround cast:
+\begin{cquote}
+\begin{description}[leftmargin=*,topsep=0pt,itemsep=0pt,parsep=0pt]
 \item[Change:] \CC objects of enumeration type can only be assigned values of the same enumeration type.
 In C, objects of enumeration type can be assigned values of any integral type.
@@ -102,2 +103,4 @@
 \item[How widely used:] Common.
 \end{description}
+\hfill ISO/IEC 14882:1998 (\CC Programming Language Standard)~\cite[C.1.5.7.2.5]{ANSI98:C++}
+\end{cquote}
Index: doc/theses/jiada_liang_MMath/relatedwork.tex
===================================================================
--- doc/theses/jiada_liang_MMath/relatedwork.tex	(revision cdbb909ded4bb5325b86d9b815ce893c0854ec8c)
+++ doc/theses/jiada_liang_MMath/relatedwork.tex	(revision 508cff026f51f3c569af15b678037daae167ad0b)
@@ -353,6 +353,7 @@
 whereas C @const@ declarations without @static@ are marked @R@.
 
-The following \CC non-backward compatible change is made~\cite[C.1.5.7.2]{C++}, plus the safe-assignment change shown in~\VRef{s:TypeSafety}.
-\begin{description}[parsep=0pt]
+The following \CC non-backward compatible change is made, plus the safe-assignment change shown in~\VRef{s:TypeSafety}.
+\begin{cquote}
+\begin{description}[leftmargin=*,topsep=0pt,itemsep=0pt,parsep=0pt]
 \item[Change:] In \CC, the type of an enumerator is its enumeration.
 In C, the type of an enumerator is @int@.
@@ -370,4 +371,6 @@
 Taking the size of an enumerator is not a common C coding practice.
 \end{description}
+\hfill ISO/IEC 14882:1998 (\CC Programming Language Standard)~\cite[C.1.5.7.2.6]{ANSI98:C++}
+\end{cquote}
 Hence, the values in a \CC enumeration can only be its enumerators (without a cast).
 
