Skip to content

Commit 74193b6

Browse files
committed
preparing for ivoatex
1 parent 9b4a9ce commit 74193b6

6 files changed

Lines changed: 1113 additions & 6 deletions

File tree

.gitignore

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
*.aux
2-
*.log
3-
*.pdf
4-
*.tex
1+
MappingVODML.aux
2+
MappingVODML.html
3+
MappingVODML.log
4+
MappingVODML.out
5+
MappingVODML.pdf
6+
MappingVODML.toc
7+
MappingVODML.fls
8+
ivoatexmeta.tex
9+
MappingVODML.fdb_latexmk
510

611
## vi
712
*~

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "cereal"]
22
path = cereal
33
url = https://github.com/olaurino/cereal
4+
[submodule "ivoatex"]
5+
path = ivoatex
6+
url = https://github.com/ivoa-std/ivoatex

Makefile

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# ivoatex Makefile. The ivoatex/README for the targets available.
2+
3+
# short name of your document (edit $DOCNAME.tex; would be like RegTAP)
4+
DOCNAME = MappingVODML
5+
6+
# count up; you probably do not want to bother with versions <1.0
7+
DOCVERSION = 1.0
8+
9+
# Publication date, ISO format; update manually for "releases"
10+
DOCDATE = ???
11+
12+
# What is it you're writing: NOTE, WD, PR, REC, PEN, or EN
13+
DOCTYPE = ???
14+
15+
# An e-mail address of the person doing the submission to the document
16+
# repository (can be empty until a make upload is being made)
17+
AUTHOR_EMAIL=???
18+
19+
# Source files for the TeX document (but the main file must always
20+
# be called $(DOCNAME).tex
21+
SOURCES = $(DOCNAME).tex
22+
#role_diagram.pdf
23+
24+
# List of image files to be included in submitted package (anything that
25+
# can be rendered directly by common web browsers)
26+
FIGURES =
27+
#role_diagram.svg
28+
29+
# List of PDF figures (figures that must be converted to pixel images to
30+
# work in web browsers).
31+
VECTORFIGURES =
32+
33+
# Additional files to distribute (e.g., CSS, schema files, examples...)
34+
AUX_FILES =
35+
36+
-include ivoatex/Makefile
37+
38+
ivoatex/Makefile:
39+
@echo "*** ivoatex submodule not found. Initialising submodules."
40+
@echo
41+
git submodule update --init

0 commit comments

Comments
 (0)