Skip to content

Commit

Permalink
Use responsive units for font sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
pmichaillat committed Jul 18, 2024
1 parent dae8955 commit e96e8a1
Show file tree
Hide file tree
Showing 136 changed files with 345 additions and 170 deletions.
7 changes: 1 addition & 6 deletions assets/css/common/archive.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}

.archive-year-header {
font-size: 22px;
font-size: 1.4rem;
font-weight: var(--semibold);
}

Expand Down Expand Up @@ -44,8 +44,3 @@
font-size: var(--home-size);
}

.archive-count,
.archive-meta {
color: var(--secondary);
font-size: 14px;
}
5 changes: 0 additions & 5 deletions assets/css/common/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,3 @@
.top-link:hover {
color: var(--secondary);
}

.top-link:focus,
#theme-toggle:focus {
outline: 0;
}
6 changes: 3 additions & 3 deletions assets/css/common/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}

.page-header h1 {
font-size: var(--h1-size);
font-size: 1.6rem;
}

.pagination {
Expand All @@ -16,7 +16,7 @@

.pagination a {
color: var(--theme);
font-size: 13px;
font-size: var(--footer-size);
line-height: 36px;
background: var(--primary);
border-radius: calc(36px / 2);
Expand Down Expand Up @@ -67,7 +67,7 @@ pre {
border-radius: 4px;
border: 1px solid var(--purple);
padding: 1px 5px;
font-size: 13px;
font-size: var(--footer-size);
user-select: none;
}

Expand Down
33 changes: 1 addition & 32 deletions assets/css/common/post-entry.css
Original file line number Diff line number Diff line change
@@ -1,34 +1,3 @@
.first-entry {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
min-height: 200px;
margin: var(--gap) 0 calc(var(--gap) * 2) 0;
}

.first-entry .entry-header {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 8;
}

.first-entry .entry-header h1 {
font-size: 34px;
line-height: 1.3;
}

.first-entry .entry-content {
margin: 14px 0;
font-size: 16px;
-webkit-line-clamp: 8;
}

.first-entry .entry-footer {
font-size: 14px;
}

.home-info .entry-content {
-webkit-line-clamp: unset;
}
Expand All @@ -53,7 +22,7 @@
}

.entry-header h2 {
font-size: 20px;
font-size: 1.25rem;
line-height: var(--line-height);
}

Expand Down
31 changes: 15 additions & 16 deletions assets/css/common/post-single.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

.post-title {
margin-bottom: 20px;
font-size: 36px;
font-size: 2.25rem;
}

.post-description {
Expand All @@ -16,7 +16,7 @@
.post-meta,
.breadcrumbs {
color: var(--secondary);
font-size: 15px;
font-size: var(--meta-size);
}

.post-meta .i18n_list li {
Expand All @@ -41,34 +41,34 @@

.post-content h1 {
margin: 40px auto 32px;
font-size: 40px;
font-size: 1.85rem;
}

.post-content h2 {
margin: 32px auto 24px;
font-size: 24px;
font-size: 1.5rem;
}

.post-content h3 {
font-size: 19px;
font-size: 1.2rem;
}

.post-content h4 {
font-size: 15px;
font-size: 0.95rem;
font-weight: var(--semibold);
text-transform: uppercase;
color: var(--gray);
}

.post-content h5 {
font-size: 14px;
font-size: 0.85rem;
font-weight: var(--semibold);
text-transform: uppercase;
color: var(--gray);
}

.post-content h6 {
font-size: var(--footer-size);
font-size: 0.8rem;
color: var(--secondary);
}

Expand Down Expand Up @@ -151,7 +151,7 @@

.post-content table th {
text-align: start;
font-size: 14px;
font-size: 0.9rem;
font-weight: var(--semibold);
text-transform: uppercase;
color: var(--gray);
Expand Down Expand Up @@ -252,15 +252,15 @@
}

.post-content figure > figcaption {
color: var(--primary);
font-size: 16px;
color: var(--content);
font-size: var(--content-size);
font-weight: bold;
margin: 8px 0 16px;
}

.post-content figure > figcaption > p {
color: var(--secondary);
font-size: 14px;
font-size: var(--meta-size);
font-weight: normal;
}

Expand All @@ -284,13 +284,13 @@
display: inline;
font-weight: var(--semibold);
text-transform: uppercase;
font-size: 15px;
font-size: 0.9rem;
}

.toc .inner {
margin: 0 calc(var(--margin-left) - 12px);
padding: 10px 20px;
font-size: 16px;
font-size: var(--meta-size);
}

.toc li ul {
Expand Down Expand Up @@ -330,7 +330,7 @@
display: block;
padding: 0 10px;
color: var(--secondary);
font-size: 16px;
font-size: var(--meta-size);
line-height: 32px;
background: var(--code-bg);
transition: transform 0.1s;
Expand Down Expand Up @@ -387,7 +387,6 @@ a[href^="#fn:"]:hover, a[href^="#fnref:"]:hover {
.paginav .title {
letter-spacing: 1px;
text-transform: uppercase;
font-size: small;
color: var(--secondary);
}

Expand Down
2 changes: 1 addition & 1 deletion assets/css/common/profile-mode.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}

.profile .profile_inner h1 {
font-size: 42px;
font-size: 2.6rem;
}

.profile img {
Expand Down
12 changes: 6 additions & 6 deletions assets/css/core/theme-vars.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
--gray: rgb(165, 165, 165); /*labels*/
--archive: rgb(200, 200, 200); /*archive lines*/
--semibold: 500;
--h1-size: 25px;
--content-size:18px;
--home-size: 16px;
--header-size: 16px;
--entry-size: 15px;
--footer-size: 13px;
--content-size:1.15rem;
--home-size: 1rem;
--header-size: 1rem;
--meta-size: 1rem;
--entry-size: 0.95rem;
--footer-size: 0.8rem;
--line-height: 1.45;
--margin-left: 26px;
}
Expand Down
4 changes: 2 additions & 2 deletions content/papers/12.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ P-hacking is prevalent in reality but absent from classical hypothesis-testing t

---

##### Figure 3A: Critical values robust to p-hacking for one-sided z-test with significance level of 5%
##### Figure 3A: Critical values robust to p-hacking for one-sided z-test with significance level of 5%

![](/12a.png)

##### Figure 3B: Critical values robust to p-hacking for two-sided z-test with significance level of 5%
##### Figure 3B: Critical values robust to p-hacking for two-sided z-test with significance level of 5%

![](/12b.png)

Expand Down
2 changes: 1 addition & 1 deletion public/1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper proposes a matching model of the labor market with job rationing: unemployment persists even without matching frictions. Published in AER, 2012.">
<meta name="author" content="Pascal Michaillat">
<link rel="canonical" href="https://pascalmichaillat.org/1/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
2 changes: 1 addition & 1 deletion public/10/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper develops a model of science. Due to homophily in promotions, false paradigms may persist when a science has low power. Published in PNAS, 2018.">
<meta name="author" content="George Akerlof,&thinsp;Pascal Michaillat">
<link rel="canonical" href="https://pascalmichaillat.org/10/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
2 changes: 1 addition & 1 deletion public/11/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper resolves the New Keynesian model&#39;s anomalies at the zero lower bound by introducing wealth in the utility function. Published in REStat, 2021.">
<meta name="author" content="Pascal Michaillat,&thinsp;Emmanuel Saez">
<link rel="canonical" href="https://pascalmichaillat.org/11/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
6 changes: 3 additions & 3 deletions public/12/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper builds a model of hypothesis testing with p-hacking and gives critical values that are robust to by p-hacking. Published in REStat, 2024.">
<meta name="author" content="Adam McCloskey,&thinsp;Pascal Michaillat">
<link rel="canonical" href="https://pascalmichaillat.org/12/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down Expand Up @@ -203,10 +203,10 @@ <h1 class="post-title entry-hint-parent">
<h5 id="abstract">Abstract</h5>
<p>P-hacking is prevalent in reality but absent from classical hypothesis-testing theory. We therefore build a model of hypothesis testing that accounts for p-hacking. From the model, we derive critical values such that, if they are used to determine significance, and if p-hacking adjusts to the new significance standards, spurious significant results do not occur more often than intended. Because of p-hacking, such robust critical values are larger than classical critical values. In the model calibrated to medical science, the robust critical value is the classical critical value for the same test statistic but with one fifth of the significance level.</p>
<hr>
<h5 id="figure-3a--critical-values-robust-to-p-hacking-for-one-sided-z-test-with-significance-level-of-5">Figure 3A: Critical values robust to p-hacking for one-sided z-test with significance level of 5%</h5>
<h5 id="figure-3a-critical-values-robust-to-p-hacking-for-one-sided-z-test-with-significance-level-of-5">Figure 3A: Critical values robust to p-hacking for one-sided z-test with significance level of 5%</h5>
<p><img loading="lazy" src="/12a.png" alt="" />
</p>
<h5 id="figure-3b--critical-values-robust-to-p-hacking-for-two-sided-z-test-with-significance-level-of-5">Figure 3B: Critical values robust to p-hacking for two-sided z-test with significance level of 5%</h5>
<h5 id="figure-3b-critical-values-robust-to-p-hacking-for-two-sided-z-test-with-significance-level-of-5">Figure 3B: Critical values robust to p-hacking for two-sided z-test with significance level of 5%</h5>
<p><img loading="lazy" src="/12b.png" alt="" />
</p>
<hr>
Expand Down
2 changes: 1 addition & 1 deletion public/13/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper argues that in the United States the full-employment rate of unemployment (FERU) is the geometric average of the unemployment and vacancy rates.">
<meta name="author" content="Pascal Michaillat,&thinsp;Emmanuel Saez">
<link rel="canonical" href="https://pascalmichaillat.org/13/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
2 changes: 1 addition & 1 deletion public/14/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper explains why a wave of immigration reduces the employment rate of native workers, and why this reduction is larger in bad times.">
<meta name="author" content="Pascal Michaillat">
<link rel="canonical" href="https://pascalmichaillat.org/14/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
2 changes: 1 addition & 1 deletion public/15/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper develops a simple business-cycle model with divine coincidence: inflation is on target when unemployment is efficient.">
<meta name="author" content="Pascal Michaillat,&thinsp;Emmanuel Saez">
<link rel="canonical" href="https://pascalmichaillat.org/15/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
2 changes: 1 addition & 1 deletion public/2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper develops a New Keynesian model in which the government multiplier doubles when unemployment rises from 5% to 8%. Published in AEJ Macro, 2014.">
<meta name="author" content="Pascal Michaillat">
<link rel="canonical" href="https://pascalmichaillat.org/2/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
2 changes: 1 addition & 1 deletion public/3/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper develops a model of unemployment fluctuations in which the labor and product markets have a matching structure. Published in QJE, 2015.">
<meta name="author" content="Pascal Michaillat,&thinsp;Emmanuel Saez">
<link rel="canonical" href="https://pascalmichaillat.org/3/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
2 changes: 1 addition & 1 deletion public/4/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper develops a theory of optimal unemployment insurance in matching models. Published in AEJ Policy, 2018.">
<meta name="author" content="Camille Landais,&thinsp;Pascal Michaillat,&thinsp;Emmanuel Saez">
<link rel="canonical" href="https://pascalmichaillat.org/4/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
2 changes: 1 addition & 1 deletion public/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This website hosts Pascal Michaillat&#39;s research papers, course materials, design templates, curriculum vitae, and contact information.">
<meta name="author" content="Pascal Michaillat">
<link rel="canonical" href="https://pascalmichaillat.org/404.html">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
2 changes: 1 addition & 1 deletion public/5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="description" content="This paper studies how the generosity of unemployment insurance should vary over the business cycle in the United States. Published in AEJ Policy, 2018.">
<meta name="author" content="Camille Landais,&thinsp;Pascal Michaillat,&thinsp;Emmanuel Saez">
<link rel="canonical" href="https://pascalmichaillat.org/5/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.35e3782808a10d91e9bc5a89bbf2b642ac94fdb60d690906e3d4c084f3e7b561.css" integrity="sha256-NeN4KAihDZHpvFqJu/K2QqyU/bYNaQkG49TAhPPntWE=" rel="preload stylesheet" as="style">
<link crossorigin="anonymous" href="/assets/css/stylesheet.e6d96c20cfba805d87bc52bfe207714dd9bfcfba728f24b0d391efd5537b14d2.css" integrity="sha256-5tlsIM&#43;6gF2HvFK/4gdxTdm/z7pyjySw05Hv1VN7FNI=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://pascalmichaillat.org/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/favicon-32x32.png">
Expand Down
Loading

0 comments on commit e96e8a1

Please sign in to comment.