-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #181 from CooperUnion/user/jacobkoziej/igvc-report…
…-setup IGVC Report Setup
- Loading branch information
Showing
23 changed files
with
458 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
|
||
defaultIndent: ' ' | ||
removeTrailingWhitespace: 1 | ||
|
||
modifyLineBreaks: | ||
preserveBlankLines: 1 | ||
condenseMultipleBlankLinesInto: 1 | ||
textWrapOptions: | ||
columns: 72 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ | |
pkgs.mdbook | ||
pkgs.ninja | ||
pkgs.nixpkgs-fmt | ||
pkgs.texliveFull | ||
pkgs.zlib | ||
python | ||
pythonPackages.invoke | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# ruff: noqa: F821 | ||
|
||
Import('env') | ||
|
||
|
||
projects = env.SConscript( | ||
[ | ||
f'{project}/SConscript.py' | ||
for project in [ | ||
'g-wagon', | ||
] | ||
] | ||
) | ||
|
||
|
||
Return('projects') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# ruff: noqa: F821 | ||
|
||
Import('env') | ||
|
||
|
||
igvc_report = env.SConscript('igvc-report/SConscript.py') | ||
|
||
project, name = env.Project(env.Dir('.'), env.File('project.toml')) | ||
env.ProjectSubtarget(name, 'igvc-report', igvc_report) | ||
|
||
|
||
Return('project') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# ruff: noqa: F821 | ||
|
||
Import('env') | ||
|
||
|
||
igvc_report = env.PDF('igvc-report.tex') | ||
|
||
|
||
Return('igvc_report') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
\begin{abstract} | ||
\end{abstract} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
\section{Background} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
\section{Cyber Security} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
\section{Design} | ||
|
||
\subsection{Mechanical} | ||
|
||
\subsection{Electrical} | ||
|
||
\subsection{Software} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
% <https://journals.aas.org/aastexguide/> | ||
\documentclass[linenumbers]{aastex631} | ||
|
||
\input{preamble} | ||
|
||
\begin{document} | ||
\include{title} | ||
\include{abstract} | ||
\include{background} | ||
\include{system-architecture} | ||
\include{innovations} | ||
\include{design} | ||
\include{cyber-security} | ||
\include{system-analysis} | ||
\include{unit-tests} | ||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
\section{Innovations} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
\usepackage{graphicx} | ||
|
||
\usepackage{hyperref} | ||
\hypersetup{ | ||
hidelinks, | ||
pdfinfo = { | ||
Title = IGVC Design Report, | ||
Author = The Cooper Union for the Advancement of Science and Art, | ||
Subject = Autonomous Vehicles, | ||
Keywords = {IGVC}, | ||
}, | ||
} | ||
\usepackage{csquotes} | ||
\usepackage{bookmark} | ||
|
||
\journalinfo{\emph{\enquote{It had to be done}}} | ||
|
||
\NewDocumentCommand{\member}{mm}{ | ||
\author{#1 \href{mailto:#[email protected]}{\texttt{<#[email protected]>}}} | ||
\affiliation{The Cooper Union for the Advancement of Science and Art} | ||
} | ||
\NewDocumentCommand{\memberSpecial}{mmm}{ | ||
\author{#1 \href{mailto:#[email protected]}{\texttt{<#[email protected]>}}} | ||
\altaffiliation{#3} | ||
\affiliation{The Cooper Union for the Advancement of Science and Art} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
\section{System Analysis} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
\section{System Architecture} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
\belowpdfbookmark{IGVC Design Report}{title} | ||
\title{ | ||
IGVC Design Report --- The \enquote{g-wagon} | ||
} | ||
|
||
\memberSpecial{Jacob Koziej}{jacob.koziej}{Team Captain} | ||
|
||
\member{Jeannette Circe}{circe} | ||
\member{Ridwan Hussain}{ridwan.hussain} | ||
|
||
\memberSpecial{Michael Giglia}{michael.giglia}{Faculty Advisor} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
\section{Unit Tests} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
name = 'g-wagon' |
Oops, something went wrong.