Skip to content

Commit

Permalink
start work on paper
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenClontz authored Mar 24, 2024
1 parent 2050cc8 commit ff354eb
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push]

jobs:
paper:
runs-on: ubuntu-latest
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
# This should be the path to the paper within your repo.
paper-path: paper.md
- name: Upload
uses: actions/upload-artifact@v1
with:
name: paper
# This is the output path where Pandoc will write the compiled
# PDF. Note, this should be the same directory as the input
# paper.md
path: paper.pdf
25 changes: 25 additions & 0 deletions paper.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
@article{mer:1971,
ISSN = {00029890, 19300972},
URL = {http://www.jstor.org/stable/2318037},
author = {Mary Ellen Rudin and J. Arthur Seebach},
journal = {The American Mathematical Monthly},
number = {7},
pages = {803--804},
publisher = {Mathematical Association of America},
reviewed-author = {Lynn A. Steen},
urldate = {2024-03-24},
volume = {78},
year = {1971}
}
@book {MR1382863,
AUTHOR = {Steen, Lynn Arthur and Seebach, Jr., J. Arthur},
TITLE = {Counterexamples in topology},
NOTE = {Reprint of the second (1978) edition},
PUBLISHER = {Dover Publications, Inc., Mineola, NY},
YEAR = {1995},
PAGES = {xii+244},
ISBN = {0-486-68735-X},
MRCLASS = {54-00 (00A20 54-01 54G20)},
MRNUMBER = {1382863},
}
63 changes: 63 additions & 0 deletions paper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
title: 'π-Base: a community database of topological counterexamples'
tags:
- Typescript
- mathematics
- topology
authors:
- name: James Dabbs
equal-contrib: true
affiliation: 1
- name: Steven Clontz
orcid: 0000-0002-4938-4274
equal-contrib: true
affiliation: 2
affiliations:
- name: Independent Researcher, USA
index: 1
- name: University of South Alabama, USA
index: 2
date: 24 March 2024
bibliography: paper.bib
---

# Summary

> Topology is a dense forest of counterexamples. A usable map of the forest is a fine thing.
The preceding quote is paraphrased from Mary Ellen Rudin's review
[@mer:1971] of Counterexamples in Topology [@MR1382863].

# Statement of need



# Citations

Citations to entries in paper.bib should be in
[rMarkdown](http://rmarkdown.rstudio.com/authoring_bibliographies_and_citations.html)
format.

If you want to cite a software repository URL (e.g. something on GitHub without a preferred
citation) then you can do it with the example BibTeX entry below for @fidgit.

For a quick reference, the following citation commands can be used:
- `@author:2001` -> "Author et al. (2001)"
- `[@author:2001]` -> "(Author et al., 2001)"
- `[@author1:2001; @author2:2001]` -> "(Author1 et al., 2001; Author2 et al., 2002)"

# Figures

Figures can be included like this:
![Caption for example figure.\label{fig:example}](figure.png)
and referenced from text using \autoref{fig:example}.

Figure sizes can be customized by adding an optional second parameter:
![Caption for example figure.](figure.png){ width=20% }

# Acknowledgements

We acknowledge contributions from Brigitta Sipocz, Syrtis Major, and Semyeong
Oh, and support from Kathryn Johnston during the genesis of this project.

# References

0 comments on commit ff354eb

Please sign in to comment.