Skip to content

Commit

Permalink
add affiliation, data, citation
Browse files Browse the repository at this point in the history
  • Loading branch information
shunzh committed Jul 20, 2023
1 parent bdf212b commit 1a6f81f
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 8 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ You only need to change the content of [index.md](/index.md).
It's possible to only write in markdown, but you can also use HTML to achieve more fancy effects.

Here is an [example website](https://shunzh.github.io/project_website/).

TODOs:
- [ ] Add author links and affiliations.
24 changes: 21 additions & 3 deletions _layouts/project_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,21 @@
<div class="columns is-centered">
<div class="column has-text-centered">
<h1 class="title is-1 publication-title">{{ page.title }}</h1>
{% if page.authors %}
<div class="is-size-5 publication-authors">
<span class="author-block">
{{ page.authors }}
</span>
</div>
{% endif %}

<!-- <div class="is-size-5 publication-authors">
<span class="author-block"><sup>1</sup>University of Washington,</span>
</div> -->
{% if page.affiliations %}
<div class="is-size-5 publication-authors">
<span class="author-block">
{{ page.affiliations }}
</span>
</div>
{% endif %}

<div class="column has-text-centered">
<div class="publication-links">
Expand Down Expand Up @@ -76,6 +82,18 @@ <h1 class="title is-1 publication-title">{{ page.title }}</h1>
</a>
</span>
{% endif %}
<!-- Dataset Link. -->
{% if page.data %}
<span class="link-block">
<a href="{{ page.data }}"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fas fa-database"></i>
</span>
<span>Data</span>
</a>
</span>
{% endif %}
</div>
</div>
</div>
Expand Down
23 changes: 21 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ layout: project_page
permalink: /

title: On Computable Numbers, with an Application to the Entscheidungsproblem
authors: A. M. Turing
authors:
A. M. Turing
affiliations:
King's College, Cambridge
paper: https://www.cs.virginia.edu/~robins/Turing_Paper_1936.pdf
video: https://www.youtube.com/results?search_query=turing+machine
code: https://github.com/topics/turing-machines
data: https://huggingface.co/docs/datasets
---

<div class="columns is-centered has-text-centered">
Expand All @@ -30,8 +34,10 @@ if its decimal can be written down by a machine...
</div>
</div>

---

> Note: The following content is generated by ChatGPT. The figure is manually added.
> Note: This is an example of a Jekyll-based project website template: [Github link](https://github.com/shunzh/project_website).\
> The following content is generated by ChatGPT. The figure is manually added.
## Background
The paper "On Computable Numbers, with an Application to the Entscheidungsproblem" was published by Alan Turing in 1936. In this groundbreaking paper, Turing introduced the concept of a universal computing machine, now known as the Turing machine.
Expand Down Expand Up @@ -63,3 +69,16 @@ He used the concept of a universal Turing machine to prove that the set of compu

## Significance
Turing's paper laid the foundation for the theory of computation and had a profound impact on the development of computer science. The Turing machine became a fundamental concept in theoretical computer science, serving as a theoretical model for studying the limits and capabilities of computation. Turing's work also influenced the development of programming languages, algorithms, and the design of modern computers.

## Citation
```
@article{turing1936computable,
title={On computable numbers, with an application to the Entscheidungsproblem},
author={Turing, Alan Mathison},
journal={Journal of Mathematics},
volume={58},
number={345-363},
pages={5},
year={1936}
}
```

0 comments on commit 1a6f81f

Please sign in to comment.