diff --git a/docs/01-tcc.Rnw b/docs/01-tcc.Rnw
index 1fa8e6e585ffc2aa1fa251acf24cbe6aa98e915f..2f4039dd45a3964993f5aed2bf7b8d9cd7091cf2 100644
--- a/docs/01-tcc.Rnw
+++ b/docs/01-tcc.Rnw
@@ -63,6 +63,13 @@
 \usepackage{setspace}
 \usepackage{wrapfig}
 
+% ---
+% Para titulo em destaque sem sequencia de numeração
+% ---
+\newcommand{\datatitle}[1]{
+  \normalsize \textsc{#1}
+}
+
 % ---
 % Funções matematicas
 % ---
@@ -75,6 +82,8 @@
 % Para tabelas
 % ---
 \usepackage{multirow}
+\usepackage{array}
+\usepackage{threeparttable}
 
 % ---
 % Pacotes e definições adcionais, para adequações especificas
diff --git a/docs/cap02_revisao-de-literatura.Rnw b/docs/cap02_revisao-de-literatura.Rnw
index 656f7e4ee31c3685dfdb743e2b708918af160ee4..74d94b27c041d18f10d8fc9bdc97edb500256d88 100644
--- a/docs/cap02_revisao-de-literatura.Rnw
+++ b/docs/cap02_revisao-de-literatura.Rnw
@@ -59,9 +59,11 @@ Katz                                & \checkmark        & \checkmark     & \chec
 \textit{Double-Poisson}             & \checkmark        & \checkmark     & \checkmark   \\
 \textit{Lagrangian Poisson}         & \checkmark        & \checkmark     & \checkmark   \\
   \bottomrule
-  \\[-0.3cm]
-  {\small Fonte: Elaborado pelo autor.}
 \end{tabular}
+\begin{tablenotes}
+  \small
+\item Fonte: Elaborado pelo autor.
+\end{tablenotes}
 \end{table}
 %%----------------------------------------------------------------------
 
@@ -860,7 +862,7 @@ probs <- sapply(sim, function(y) {
     m0 <- glm(y ~ 1, family = poisson)
     py_pois <- dpois(yu, exp(m0$coef))
     ##-------------------------------------------
-    m1 <- cmp(y ~ 1, data = data.frame(y = y), sumto = 40)
+    m1 <- MRDCr::cmp(y ~ 1, data = data.frame(y = y), sumto = 40)
     py_dcmp <- dcmp(yu, lambda = exp(m1@coef[-1]),
                     nu = exp(m1@coef[1]), sumto = 40)
     ##-------------------------------------------