Hello,
I am trying to export regression tables in latex using esttab.
I am having trouble finding a way to format very long footnotes. The code I am using is something like this
in LaTex the table looks something like this.

I would like the footnote to automatically change the line once it reaches the table witdth. without distorting the column space. Does anyone know how I could do this directly using esttab?
thanks a lot in advance for your help
I am trying to export regression tables in latex using esttab.
I am having trouble finding a way to format very long footnotes. The code I am using is something like this
Code:
sysuse auto, clear
reg price weight length
eststo reg1
reg price weight length mpg
eststo reg2
esttab reg1 reg2 using "testtex.tex", replace ///
label se star(* 0.10 ** 0.05 *** 0.01) b(3) se(3) compress ///
noobs nomtitle collabels(none) nonotes nogaps ///
title("This is a table with very long footnotes") ///
substitute([htbp] [!htbp] \begin{tabular} \small\begin{tabular}) ///
addnotes("This is a very long footnote that I would like to have formatted across multiple lines withouth affecting the column spacing" ///
"I am aware I can split the footnote in multiple lines. But this is not what I want to do")
I would like the footnote to automatically change the line once it reaches the table witdth. without distorting the column space. Does anyone know how I could do this directly using esttab?
thanks a lot in advance for your help

Comment