In esttab, when I did not specify mtitle, STATA will automatically create a row for title similar to the name of dependent variables. However, I do not want to have the mtitle row, what I should do ? I check with the help file but I did not file the way out.
Thanks in advance.

What I have done so far is:

My code is

Code:
esttab m1 m2 m3 m4,star(* 0.1 ** 0.05 *** 0.01) ar2 title(" Random title ") mtitle ("spec (1)" "spec (2)" "spec (3)" "spec (4)")
Code:
 Random title 
----------------------------------------------------------------------------
                      (1)             (2)             (3)             (4)   
                 spec (1)        spec (2)        spec (3)        spec (4)   
----------------------------------------------------------------------------
or

Code:
esttab m1 m2 m3 m4,star(* 0.1 ** 0.05 *** 0.01) ar2 title(" Random title ")

Code:
----------------------------------------------------------------------------
                      (1)             (2)             (3)             (4)   
                    dep_var         dep_var         dep_var       dep_var      
----------------------------------------------------------------------------
What I want is to drop the mtitle row.