diff --git a/docs/basics.rst b/docs/basics.rst index c0ec2f661..162245cf6 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -601,6 +601,15 @@ from all files. Use them like so:: Citation usage is similar to footnote usage, but with a label that is not numeric or begins with ``#``. +Here we take a look at some actual citations of famous papers such as [Chetty]_ +in the American Economic Review or [Silver]_ in Nature. + +.. [Chetty] Chetty, Raj, Nathaniel Hendren, and Lawrence F. Katz. "The effects of + exposure to better neighborhoods on children: New evidence from the Moving to + Opportunity experiment." *American Economic Review* 106.4 (2016): 855-902. + +.. [Silver] Silver, David, et al. "Mastering the game of Go with deep neural + networks and tree search." *nature* 529.7587 (2016): 484-489. Substitutions ------------- diff --git a/sphinx_material/sphinx_material/static/stylesheets/application-fixes.css b/sphinx_material/sphinx_material/static/stylesheets/application-fixes.css index 4778ef2ce..a65d194b7 100644 --- a/sphinx_material/sphinx_material/static/stylesheets/application-fixes.css +++ b/sphinx_material/sphinx_material/static/stylesheets/application-fixes.css @@ -415,4 +415,9 @@ div.rendered_html table { display: block; margin-left: auto; margin-right: auto; -} \ No newline at end of file +} + +/* GH 93 */ +dl.citation dt span.brackets { + margin-right: 0.3rem; +}