Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/douglase/mission_proposal_template
https://github.com/douglase/mission_proposal_template
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/douglase/mission_proposal_template
- Owner: douglase
- Created: 2019-09-21T01:15:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-21T01:23:35.000Z (over 5 years ago)
- Last Synced: 2024-10-13T09:49:00.266Z (3 months ago)
- Language: TeX
- Size: 713 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## README:
Purpose: a flexible, LaTeX based template for compiling the final PDF for
submission to NASA mission proposal calls while allowing team members
to use the writing environment they are most comfortable with.Features:
- Best effort NASA proposal formatting
- Automatically generate:
- table of contents with correct page numbers
- acronym list
- bibliography
- [Overleaf](https://www.overleaf.com/read/xvpprhvpqjpd) friendly
- Compiling of multiple PDF files with consistent headers, footers and
page numbering
- Allow varying page sizes and orientations (e.g. schedule fold-outs)
- Toggle supporting documents that you may not want to share with
the full proposal team## How to compile acronym list:
(overleaf does this automatically)
Acronym list is built on [glossaries package](https://www.ctan.org/pkg/glossaries)
after first compilation run `$ makeglossaries main.glo` from command
line and then compile again.## External PDF example:
Example of including an external PDF that is stored in a parent
directory (and thus not tracked by git/Overleaf) and having it show up in table
of contents and references in LaTex:```
\begin{landscape}
\fakesubsection{WBS}\label{sec:wbs}
\includepdf[pages=-,pagecommand={},angle=90,width=1.0\textwidth]{../WBS.pdf}
\end{landscape}
```
(depending on input PDF margins you may need to vary the width)