-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
47 lines (36 loc) · 873 Bytes
/
main.tex
File metadata and controls
47 lines (36 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{booktabs}
\usepackage{xcolor}
\usepackage{longtable}
\usepackage{subcaption}
\usepackage{tabularx}
\begin{document}
\input{tables.tex}
You can reference tables \ref{table:differencesinmeans} and \ref{table:summarytable} as expected.
% if you used the only_tabular option, you can wrap it in a table in your main
% tex file.
\begin{table}
\centering
\input{tabular_table.tex}
\end{table}
\begin{table}
\centering
\caption{IV Estimation}
\input{ivtable.tex}
\end{table}
\input{wage_table.tex}
\begin{table}
\centering
\caption{Panel Table}
\input{panel.tex}
\end{table}
\begin{table}
\centering
\caption{\texttt{pyfixest} Table}
\input{pyfixest_tables.tex}
\end{table}
\pagebreak
\input{longtable.tex}
\input{wage_table_long_name.tex}
\end{document}