This is the repository behind the SNN Sound Localization project. Check out the website for more information about the project and how to join and contribute.
research/
: Jupyter Notebooks and markdown files with research notes, code, and plots. Gets built into the website.paper/
: Markdown files with the paper in progress. Also gets built into the website.index.md
: Home page ("About") of the websiteenvironment.yml
: conda environment to run the notebooks inresearch/
.
To edit and build locally, install node and myst following these instructions.
To edit locally:
myst start
Then click the link in the terminal (probably http://localhost:3000
).
At the moment, the typst build has some problems with equations. Use
myst build paper/paper.md --tex
and then you need to edit the generated latex in _build/exports/paper_tex
as follows:
- Change first line to
\documentclass[a4paper,11pt]{article}
. This is because we use the book preprint from mystmd as it works best at time of writing, but we don't want a book. - Remove the
\frontmatter
and\mainmatter
commands because it's not a book. - Remove the formatting if desired from
\title
and\author
. - Replace commas and
and
in theauthor{}
with\and
to spread across multiple lines correctly. - For each section authors table, add
[!h]
to the end of the table declaration otherwise it puts it at the top of the page. - Remove
\tableofcontents
- Add
\begin{abstract}
and\end{abstract}
around the abstract.
It should then build with a standard pdlatex-bibtex-pdflatex*2
build.