I'm trying to import regression results from EViews 7. However, even after using verbatim environment, the results doesn't look as it does when I do it from Stata. I simply copy and paste them in LaTeX and then use verbatim. I think probably because EVIEWS does some formatting before posting the results.
I've also attached an image file of the output from Eviews7. Ideally speaking I want the that format with verbatim. If that is not possible, at least that format.
Thanks for reading.

MWE follows:
Code: Select all
\documentclass[a4paper,12pt, final]{article}%
\usepackage[margin=2.54cm,top=2.54cm]{geometry}
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{verbatim}
\usepackage{graphicx}
\usepackage[gen]{eurosym}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{epstopdf}
\usepackage{fancyhdr}
\usepackage{lmodern}
\pagestyle{fancy}
\lhead{\thepage}
\fancyfoot{}
\renewcommand{\headrulewidth}{0pt}
\begin{document}
\title{my}
\author{it's me}
\maketitle
\section{Regression tables}
\label{results}
\subsection{Regression 1}
\begin{small}
\begin{verbatim}
Null Hypothesis: DLCONS has a unit root
Exogenous: Constant, Linear Trend
Lag Length: 0 (Automatic - based on SIC, maxlag=12)
t-Statistic Prob.*
Augmented Dickey-Fuller test statistic -8.740457 0.0000
Test critical values: 1% level -4.027463
5% level -3.443450
10% level -3.146455
*MacKinnon (1996) one-sided p-values.
Augmented Dickey-Fuller Test Equation
Dependent Variable: D(DLCONS)
Method: Least Squares
Date: 12/03/10 Time: 22:24
Sample (adjusted): 1960Q3 1994Q1
Included observations: 135 after adjustments
Variable Coefficient Std. Error t-Statistic Prob.
DLCONS(-1) -0.734338 0.084016 -8.740457 0.0000
C 0.005347 0.001349 3.962918 0.0001
@TREND(1960Q1) -1.91E-05 1.52E-05 -1.260037 0.2099
R-squared 0.366805 Mean dependent var -2.03E-05
Adjusted R-squared 0.357211 S.D. dependent var 0.008444
S.E. of regression 0.006770 Akaike info criterion -7.130654
Sum squared resid 0.006050 Schwarz criterion -7.066092
Log likelihood 484.3191 Hannan-Quinn criter. -7.104418
F-statistic 38.23334 Durbin-Watson stat 1.952455
Prob(F-statistic) 0.000000
\end{verbatim}
\end{small}
\end{document}