Dear Statalists,

Is there any way to put a table modified by estout, using putpdf?

for example,
Code:
sysuse auto, clear 
eststo m1: reg price mpg headroom
eststo m2: reg price mpg headroom rep78 
estout m1 m2, cells("b(fmt(2)) ci") keep(mpg rep78) 

----------------------------------------------------------------
                       m1                        m2             
                        b         ci95            b         ci95
----------------------------------------------------------------
mpg               -259.11 -375.60,-142.61      -289.35 -414.25,-164.45
rep78                                        670.90 -15.16,1356.96
----------------------------------------------------------------
Then, I want to put the table above into a pdf file using putpdf.

Many thanks in advance.
Yusuke