Skip to content

Commit

Permalink
fix refs
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGhenis committed Nov 11, 2024
1 parent e9fe0ee commit e1fc3ba
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 17 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ paper: paper/main.pdf

paper/main.pdf: $(wildcard paper/sections/**/*.tex) $(wildcard paper/bibliography/*.bib) paper/main.tex paper/macros.tex
cd paper && \
TEXINPUTS=".:sections/methodology/:" pdflatex main && \
BSTINPUTS=".:bibliography/:" BIBINPUTS=".:bibliography/:" bibtex main && \
BIBINPUTS=./bibliography pdflatex main && \
BIBINPUTS=./bibliography bibtex main && \
pdflatex main && \
pdflatex main

Expand Down
10 changes: 0 additions & 10 deletions paper/bibliography/references.bib
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,3 @@ @article{auerbach2018
pages = {541--576},
year = {2018}
}

@article{saez2012,
title = {The Elasticity of Taxable Income with Respect to Marginal Tax Rates: A Critical Review},
author = {Saez, Emmanuel and Slemrod, Joel and Giertz, Seth H},
journal = {Journal of Economic Literature},
volume = {50},
number = {1},
pages = {3--50},
year = {2012}
}
Binary file modified paper/main.pdf
Binary file not shown.
10 changes: 7 additions & 3 deletions paper/main.tex
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@
}

\title{Enhancing Survey Microdata with Administrative Records: \\ A Novel Approach to Microsimulation Dataset Construction}
% Define the \samethanks command
\newcommand*\samethanks[1][\value{footnote}]{\footnotemark[#1]}

% Define authors with the same affiliation
\author{
Nikhil Woodruff\thanks{PolicyEngine} \and
Max Ghenis\thanks{PolicyEngine}
Nikhil Woodruff\thanks{PolicyEngine} \and
Max Ghenis\samethanks
}
\date{\today}

Expand All @@ -40,7 +44,7 @@
\input{sections/discussion}
\input{sections/conclusion}

\bibliography{bibliography/references}
\bibliographystyle{plainnat}
\bibliography{./bibliography/references}

\end{document}
2 changes: 1 addition & 1 deletion paper/sections/methodology/reweighting.tex
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ \subsection{Optimization Approach}

\subsection{Implementation Details}

From \texttt{enhanced_cps.py}:
The Enhanced CPS implementation uses the following parameters:
\begin{itemize}
\item Learning rate: 0.1
\item Dropout rate: 5%
Expand Down
11 changes: 10 additions & 1 deletion repo_structure.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@
│   │   └── references.bib
│   ├── figures
│   ├── macros.tex
│   ├── main.aux
│   ├── main.bbl
│   ├── main.blg
│   ├── main.log
│   ├── main.out
│   ├── main.pdf
│   ├── main.tex
│   ├── sections
│   │   ├── abstract.tex
Expand All @@ -46,6 +52,7 @@
│   │   │   ├── overview.tex
│   │   │   ├── quantile_forests.tex
│   │   │   └── reweighting.tex
│   │   ├── methodology.tex
│   │   └── results.tex
│   └── tables
├── policyengine_us_data
Expand Down Expand Up @@ -104,6 +111,8 @@
│   └── uprating.py
├── pyproject.toml
├── repo_structure.txt
├── sections
│   └── methodology
└── setup_paper.sh

22 directories, 85 files
24 directories, 92 files

0 comments on commit e1fc3ba

Please sign in to comment.