Hello,
I want to append a dofile into my latex file.
What is the easiest way to do so?
Thank you very much in advance.
Even so I have stata on the same mac as latex, it does not work to simply type
I always get the error stata.sty not found.
Any hints or suggestions? Thank you very much in advance.
I want to append a dofile into my latex file.
What is the easiest way to do so?
Thank you very much in advance.
Even so I have stata on the same mac as latex, it does not work to simply type
Code:
\documentclass[6pt]{article}
\usepackage{amsmath}
\usepackage{a4}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{setspace}
\usepackage{booktabs}
\usepackage[left=.5cm,right=.5cm,top=1cm,bottom=2cm]{geometry}
\usepackage{longtable}
\usepackage{float}
\usepackage{calc, ifthen, alltt}
\usepackage{subcaption}
\usepackage{stata}
\allowdisplaybreaks
\begin{document}
\catcode`\#=12
\input{tabzus.tex}
\clearpage
\newpage
\begin{stata}
***Regressionen
cd "..."
use "data.dta",clear
...
\end{stata}
%\catcode`\#=6
\end{document}
Any hints or suggestions? Thank you very much in advance.

Comment