Skip to content

Commit

Permalink
Beginning to add data defs from smiths to SWHS
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Scime committed May 1, 2019
1 parent 5ccf563 commit e6cbbf9
Show file tree
Hide file tree
Showing 16 changed files with 12,502 additions and 14 deletions.
24 changes: 24 additions & 0 deletions code/SRS/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
ifeq "$(OS)" "Windows_NT"
TARGET_EXTENSION=.exe
RM=del
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S), Linux)
TARGET_EXTENSION=
RM=rm
endif
ifeq ($(UNAME_S), Darwin)
TARGET_EXTENSION=
RM=rm
endif
endif

srs: SWHS_SRS.pdf

SWHS_SRS.pdf: SWHS_SRS.tex
lualatex $(TEXFLAGS) SWHS_SRS
-bibtex $(BIBTEXFLAGS) SWHS_SRS
lualatex $(TEXFLAGS) SWHS_SRS
lualatex $(TEXFLAGS) SWHS_SRS

.PHONY: srs
1,411 changes: 1,411 additions & 0 deletions code/SRS/SWHS_SRS.tex

Large diffs are not rendered by default.

93 changes: 93 additions & 0 deletions code/Website/SWHS_SRS.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
body {min-width: 400px; max-width: 1400px;}
.title {text-align: center;}
.author {text-align: center;}
.paragraph {text-align: justify;}
.cases {
display: inline-block;
vertical-align: middle;}
.case {
float: right;
padding-left: 1em;}
.cases > span {
display: block;
padding-top: 0.1em;
padding-left: 0em;}
.casebr {
display: inline-block;
vertical-align: middle;
margin: 0 0.2em 0.4ex;
text-align: center;
font-size: 500%;}
.caption {
text-align: center;
font-weight: bold;
padding-bottom: 1%;
line-height: 0;}
.fraction {
display: inline-block;
vertical-align: middle;
margin: 0 0.2em 0.4ex;
text-align: center;}
.fraction > span {
display: block;
padding-top: 0.15em;}
.fdn {border-top: thin solid black;}
.table {
text-align: left;
padding-left: 1%;
width: 90%;
margin-bottom: 2%;
margin-top: 2%}
table, th, td {
border-collapse: collapse;
margin-left: auto;
margin-right: auto;}
th, td {border: 1px solid black; padding: 0.5em;}
.tdefn, .ddefn {width: 75%; margin-top: 1%; margin-bottom: 1%;}
.tdefn th {width: 15%;}
.ddefn th {width: 15%;}
.section {width: 80%; margin: 0 auto; text-align: left;}
.code {
display: inline-block;
text-align: left;
font-family: Monaco, Consolas, "Andale Mono","DejaVu Sans Mono", monospace;
font-size: 95%;
line-height: 140%;
white-space: pre;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
background: #faf8f0;}
.list {text-align: left;}
figure {
max-width: 100%;
text-align: center;
font-style: bold;
}
.matrix {
position: relative;
display: inline-table;
margin: 10px;
vertical-align: middle;}
.matrix:before, .matrix:after {
content: "";
position: absolute;
top: 0;
border: 1px solid #000;
width: 5px;
height: 100%;}
.matrix:before {
left: -5px;
border-right: 0px;}
.matrix:after {
right: -5px;
border-left: 0px;}
.matrix td {
padding: 5px;
text-align: center;
border: 0px;}
ul.hide-list-style {
list-style-type: none;}
ul.hide-list-style-no-indent {
list-style-type: none;
padding: 0;}
Loading

1 comment on commit e6cbbf9

@JacquesCarette
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you really mean to add those files under code/SRS and code/Website?

Please sign in to comment.