Page Not Found
Sorry, but the page you were trying to view does not exist.
A variety of common markup showing how the theme styles them.
Single line blockquote:
Quotes are cool.
| Entry | Item | |
|---|---|---|
| John Doe | 2016 | Description of the item in the list |
| Jane Doe | 2019 | Description of the item in the list |
| Doe Doe | 2022 | Description of the item in the list |
| Header1 | Header2 | Header3 |
|---|---|---|
| cell1 | cell2 | cell3 |
| cell4 | cell5 | cell6 |
| cell1 | cell2 | cell3 |
| cell4 | cell5 | cell6 |
| Foot1 | Foot2 | Foot3 |
Make any link standout more when applying the .btn class.
Watch out! You can also add notices by appending {: .notice} to a paragraph.
This is an example of a link.
The abbreviation CSS stands for “Cascading Style Sheets”.
“Code is poetry.” —Automattic
You will learn later on in these tests that word-wrap: break-word; will be your best friend.
This tag will let you strikeout text.
The emphasize tag should italicize text.
This tag should denote inserted text.
This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag.
This tag styles large blocks of code.
.post-title {
margin: 0 0 5px;
font-weight: bold;
font-size: 38px;
line-height: 1.2;
and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
}
Developers, developers, developers…
–Steve Ballmer
This tag shows bold text.
Getting our science styling on with H2O, which should push the “2” down.
Still sticking with science and Isaac Newton’s E = MC2, which should lift the 2 up.
This allows you to denote variables.
Sorry, but the page you were trying to view does not exist.
I am a PhD candidate in Economics at the London School of Economics, with research interests in Macroeconomics and its intersection with (household) finance and development.
A variety of common markup showing how the theme styles them.
{% include base_path %} {% include group-by-array collection=site.posts field=”categories” %}
{% include base_path %}
{% include base_path %} {% capture written_label %}’None’{% endcapture %}
{% include base_path %}
{% include base_path %}
{% include toc %}
This is a page not in the menu. You can use markdown in this page.
This page contains links to interactive notebooks that I created for (beginning) graduate Macroeconomics course at the LSE (EC413), 2023-2024, with Matthias Doepke and Silvana Tenreyro as lecturers. My students found them extremely useful. Built using the Pluto and PlutoUI packages of Julia ecosystem, these are mainly meant to help students visualise the models and build intuition by enabling them to do comparative statics (and dynamics) simply by dragging a slider! No knowledge of Julia is required, but interested students can reveal the underlying code and use it as a basic intro to Julia and numerical methods in Macroeconomics.
{% include base_path %} {% for post in site.pages %} {% include archive-single.html %} {% endfor %}
{% include base_path %}
{% if site.author.googlescholar %}
{% include base_path %}
{% include base_path %} {% include group-by-array collection=site.posts field=”tags” %}
This map is generated from a Jupyter Notebook file in talkmap.ipynb, which mines the location fields in the .md files in _talks/.
{% if site.talkmap_link == true %}
At LSE, I have taught Macroeconomics at both the undergraduate (EC1B5, EC301) and graduate levels (EC413), Math Boot Camp for the incoming graduate students (EC400), and Foundations of Economics for the first year undergraduate students in Economics (EC102).
{% include base_path %} {% include toc %}
{% include base_path %} {% capture written_year %}’None’{% endcapture %} {% for post in site.posts %} {% capture year %}{{ post.date | date: ‘%Y’ }}{% endcapture %} {% if year != written_year %} <h2 id="{{ year | slugify }}" class="archive__subtitle">{{ year }}</h2> {% capture written_year %}{{ year }}{% endcapture %} {% endif %} {% include archive-single.html %} {% endfor %}
{“/about/”:”https://ssabet.github.io/”,”/about.html”:”https://ssabet.github.io/”,”/resume-json”:”https://ssabet.github.io/cv-json/”,”/resume”:”https://ssabet.github.io/cv/”,”/md/”:”https://ssabet.github.io/markdown/”,”/markdown.html”:”https://ssabet.github.io/markdown/”,”/nmp/”:”https://ssabet.github.io/non-menu-page/”,”/nmp.html”:”https://ssabet.github.io/non-menu-page/”,”/wordpress/blog-posts/”:”https://ssabet.github.io/year-archive/”}
Jupyter notebook markdown generator These .ipynb files are Jupyter notebook files that convert a TSV containing structured data about talks (talks.tsv) or presentations (presentations.tsv) into individual markdown files that will be properly formatted for the academicpages template. The notebooks contain a lot of documentation about the process. The .py files are pure python that do the same things if they are executed in a terminal, they just don’t have pretty documentation.
<?xml version=”1.0” encoding=”utf-8”?>{% if page.xsl %}<?xml-stylesheet type=”text/xml” href=”{{ ‘/feed.xslt.xml’ absolute_url }}”?>{% endif %}<feed xmlns=”http://www.w3.org/2005/Atom” {% if site.lang %}xml:lang=”{{ site.lang }}”{% endif %}>Jekyll<link href=”{{ page.url absolute_url }}” rel=”self” type=”application/atom+xml” /><link href=”{{ ‘/’ absolute_url }}” rel=”alternate” type=”text/html” {% if site.lang %}hreflang=”{{ site.lang }}” {% endif %}/>{{ site.time date_to_xmlschema }}</updated>{{ page.url absolute_url xml_escape }}</id>{% assign title = site.title default: site.name %}{% if page.collection != “posts” %}{% assign collection = page.collection capitalize %}{% assign title = title append: “ ” append: collection %}{% endif %}{% if page.category %}{% assign category = page.category capitalize %}{% assign title = title append: “ ” append: category %}{% endif %}{% if title %}{{ title smartify xml_escape }}</title>{% endif %}{% if site.description %}{{ site.description xml_escape }}</subtitle>{% endif %}{% if site.author %}{{ site.author.name default: site.author xml_escape }}</name>{% if site.author.email %}{{ site.author.email xml_escape }}</email>{% endif %}{% if site.author.uri %}{{ site.author.uri xml_escape }}</uri>{% endif %}</author>{% endif %}{% if page.tags %}{% assign posts = site.tags[page.tags] %}{% else %}{% assign posts = site[page.collection] %}{% endif %}{% if page.category %}{% assign posts = posts where: “categories”, page.category %}{% endif %}{% unless site.show_drafts %}{% assign posts = posts where_exp: “post”, “post.draft != true” %}{% endunless %}{% assign posts = posts sort: “date” reverse %}{% assign posts_limit = site.feed.posts_limit default: 10 %}{% for post in posts limit: posts_limit %}<entry{% if post.lang %}{{“ “}}xml:lang=”{{ post.lang }}”{% endif %}>{% assign post_title = post.title smartify strip_html normalize_whitespace xml_escape %}{{ post_title }}<link href=”{{ post.url absolute_url }}” rel=”alternate” type=”text/html” title=”{{ post_title }}” />{{ post.date date_to_xmlschema }}</published>{{ post.last_modified_at default: post.date date_to_xmlschema }}</updated>{{ post.id absolute_url xml_escape }}</id>{% assign excerpt_only = post.feed.excerpt_only default: site.feed.excerpt_only %}{% unless excerpt_only %}<content type=”html” xml:base=”{{ post.url absolute_url xml_escape }}”><![CDATA[{{ post.content strip }}]]></content>{% endunless %}{% assign post_author = post.author default: post.authors[0] default: site.author %}{% assign post_author = site.data.authors[post_author] default: post_author %}{% assign post_author_email = post_author.email default: nil %}{% assign post_author_uri = post_author.uri default: nil %}{% assign post_author_name = post_author.name default: post_author %}{{ post_author_name default: “” xml_escape }}</name>{% if post_author_email %}{{ post_author_email xml_escape }}</email>{% endif %}{% if post_author_uri %}{{ post_author_uri xml_escape }}</uri>{% endif %}</author>{% if post.category %}<category term=”{{ post.category xml_escape }}” />{% elsif post.categories %}{% for category in post.categories %}<category term=”{{ category xml_escape }}” />{% endfor %}{% endif %}{% for tag in post.tags %}<category term=”{{ tag xml_escape }}” />{% endfor %}{% assign post_summary = post.description default: post.excerpt %}{% if post_summary and post_summary != empty %}<summary type="html"><![CDATA[{{ post_summary strip_html normalize_whitespace }}]]></summary>{% endif %}{% assign post_image = post.image.path default: post.image %}{% if post_image %}{% unless post_image contains “://” %}{% assign post_image = post_image absolute_url %}{% endunless %}<media:thumbnail xmlns:media=”http://search.yahoo.com/mrss/” url=”{{ post_image xml_escape }}” /><media:content medium=”image” url=”{{ post_image xml_escape }}” xmlns:media=”http://search.yahoo.com/mrss/” />{% endif %}</entry>{% endfor %}</feed>
<?xml version=”1.0” encoding=”UTF-8”?> {% if page.xsl %}<?xml-stylesheet type=”text/xsl” href=”{{ “/sitemap.xsl” | absolute_url }}”?> {% endif %} {% assign collections = site.collections | where_exp:'collection','collection.output != false' %}{% for collection in collections %}{% assign docs = collection.docs | where_exp:'doc','doc.sitemap != false' %}{% for doc in docs %}