Skip to content

Commit e1fc3ba

Browse files
committed
fix refs
1 parent e9fe0ee commit e1fc3ba

6 files changed

Lines changed: 20 additions & 17 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ paper: paper/main.pdf
5454

5555
paper/main.pdf: $(wildcard paper/sections/**/*.tex) $(wildcard paper/bibliography/*.bib) paper/main.tex paper/macros.tex
5656
cd paper && \
57-
TEXINPUTS=".:sections/methodology/:" pdflatex main && \
58-
BSTINPUTS=".:bibliography/:" BIBINPUTS=".:bibliography/:" bibtex main && \
57+
BIBINPUTS=./bibliography pdflatex main && \
58+
BIBINPUTS=./bibliography bibtex main && \
5959
pdflatex main && \
6060
pdflatex main
6161

paper/bibliography/references.bib

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,3 @@ @article{auerbach2018
122122
pages = {541--576},
123123
year = {2018}
124124
}
125-
126-
@article{saez2012,
127-
title = {The Elasticity of Taxable Income with Respect to Marginal Tax Rates: A Critical Review},
128-
author = {Saez, Emmanuel and Slemrod, Joel and Giertz, Seth H},
129-
journal = {Journal of Economic Literature},
130-
volume = {50},
131-
number = {1},
132-
pages = {3--50},
133-
year = {2012}
134-
}

paper/main.pdf

146 KB
Binary file not shown.

paper/main.tex

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@
2121
}
2222

2323
\title{Enhancing Survey Microdata with Administrative Records: \\ A Novel Approach to Microsimulation Dataset Construction}
24+
% Define the \samethanks command
25+
\newcommand*\samethanks[1][\value{footnote}]{\footnotemark[#1]}
26+
27+
% Define authors with the same affiliation
2428
\author{
25-
Nikhil Woodruff\thanks{PolicyEngine} \and
26-
Max Ghenis\thanks{PolicyEngine}
29+
Nikhil Woodruff\thanks{PolicyEngine} \and
30+
Max Ghenis\samethanks
2731
}
2832
\date{\today}
2933

@@ -40,7 +44,7 @@
4044
\input{sections/discussion}
4145
\input{sections/conclusion}
4246

43-
\bibliography{bibliography/references}
4447
\bibliographystyle{plainnat}
48+
\bibliography{./bibliography/references}
4549

4650
\end{document}

paper/sections/methodology/reweighting.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ \subsection{Optimization Approach}
6262

6363
\subsection{Implementation Details}
6464

65-
From \texttt{enhanced_cps.py}:
65+
The Enhanced CPS implementation uses the following parameters:
6666
\begin{itemize}
6767
\item Learning rate: 0.1
6868
\item Dropout rate: 5%

repo_structure.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@
3434
│   │   └── references.bib
3535
│   ├── figures
3636
│   ├── macros.tex
37+
│   ├── main.aux
38+
│   ├── main.bbl
39+
│   ├── main.blg
40+
│   ├── main.log
41+
│   ├── main.out
42+
│   ├── main.pdf
3743
│   ├── main.tex
3844
│   ├── sections
3945
│   │   ├── abstract.tex
@@ -46,6 +52,7 @@
4652
│   │   │   ├── overview.tex
4753
│   │   │   ├── quantile_forests.tex
4854
│   │   │   └── reweighting.tex
55+
│   │   ├── methodology.tex
4956
│   │   └── results.tex
5057
│   └── tables
5158
├── policyengine_us_data
@@ -104,6 +111,8 @@
104111
│   └── uprating.py
105112
├── pyproject.toml
106113
├── repo_structure.txt
114+
├── sections
115+
│   └── methodology
107116
└── setup_paper.sh
108117

109-
22 directories, 85 files
118+
24 directories, 92 files

0 commit comments

Comments
 (0)