Skip to content
This repository was archived by the owner on Dec 31, 2022. It is now read-only.

Latest commit

 

History

History
36 lines (28 loc) · 1.07 KB

File metadata and controls

36 lines (28 loc) · 1.07 KB

Aether - Senior Design Report

This is the research and design document for the Aether Sensor Node and supporting infrastructure.

Download

The latest version of the report is available for download here.

Developing and Building Instructions

Dependencies

  • pdflatex
  • biber
  • latexmk

To Compile

latexmk -pdf -interaction=nonstopmode

Or,

pdflatex main && biber main && pdflatex main

To auto-compile on file change

find . -type f -name '*.bib' -o -name '*.tex' | entr -sc 'pdflatex -interaction=nonstopmode main && biber main && pdflatex -interaction=nonstopmode main'