Code: Select all
\estauto{C:/Dropbox/TopicX/paper/tables/Desc_Stat_2019new.tex}{15}{c}
Code: Select all
\estauto{/tables/Desc_Stat_2019new.tex}{15}{c}
However, relative paths seem to work fine for coauthors (and also work fine for figures for me). Any help much appreciated. Here is the preamble section for estauto:
Code: Select all
% *****************************************************************
% Estout related things
% *****************************************************************
\let\estinput=\input % define a new input command so that we can still flatten the document
\newcommand{\estwide}[4][1]{
\small{
\vspace{-1ex}{
\textsymbols% Note the added command here
\begin{tabularx}
{#1\textwidth}{H*{#3}{#4}}
\toprule
\estinput{#2}
\bottomrule
\addlinespace[.75ex]
\end{tabularx}
}
}
}
\newcommand{\estauto}[3]{
\small{
\vspace{-1ex}{
\textsymbols% Note the added command here
\begin{tabular}{l*{#2}{#3}}
\toprule
\estinput{#1}
\bottomrule
\addlinespace[.75ex]
\end{tabular}
}
}
}
% Allow line breaks with \\ in specialcells
\newcommand{\specialcell}[2][c]{%
\begin{tabular}[#1]{@{}c@{}}#2\end{tabular}
}