Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.79 KB

ReadMe.md

File metadata and controls

43 lines (28 loc) · 1.79 KB

COMOB · SNN Sound Localization project 🎧

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.

Contents

  • 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 website
  • environment.yml: conda environment to run the notebooks in research/.

Dev notes

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).

LaTeX build

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:

  1. 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.
  2. Remove the \frontmatter and \mainmatter commands because it's not a book.
  3. Remove the formatting if desired from \title and \author.
  4. Replace commas and and in the author{} with \and to spread across multiple lines correctly.
  5. For each section authors table, add [!h] to the end of the table declaration otherwise it puts it at the top of the page.
  6. Remove \tableofcontents
  7. Add \begin{abstract} and \end{abstract} around the abstract.

It should then build with a standard pdlatex-bibtex-pdflatex*2 build.