File tree Expand file tree Collapse file tree 5 files changed +54
-6
lines changed Expand file tree Collapse file tree 5 files changed +54
-6
lines changed Original file line number Diff line number Diff line change 14
14
(version "0.0.1") ;
15
15
(workingDirectory "example")
16
16
(build
17
- ((make "-f" "Makefile"))))
17
+ ((make "-f" "Makefile")))
18
+ (sources
19
+ ((doc "LICENSE" "LICENSE")
20
+ (doc "README.md" "README.md")
21
+ (doc "example-bib.satyh" "example-bib.satyh")
22
+ (doc "examples/cite-as-number.saty" "example/cite-as-number.saty")
23
+ (doc "examples/cite-as-number.pdf" "example/cite-as-number.pdf")
24
+ (doc "examples/cite-with-name.saty" "example/cite-with-name.saty")
25
+ (doc "examples/cite-with-name.pdf" "example/cite-with-name.pdf")))
26
+ (opam "satysfi-bibyfi-doc.opam")
27
+ (dependencies ((bibyfi ()))))
Original file line number Diff line number Diff line change 1
1
SOURCES =$(wildcard * .saty)
2
2
TARGETS =$(patsubst % .saty,% .pdf,$(SOURCES ) )
3
3
4
+ SATYSFI_OPTS+ =-b
5
+
6
+ ifdef SATYSFI_RUNTIME
7
+ SATYSFI_OPTS+=-C "$(SATYSFI_RUNTIME)"
8
+ endif
9
+
4
10
.PHONY : all
5
11
6
12
all : $(TARGETS )
7
13
8
14
% .pdf : % .saty
9
- satysfi -b $< -o $@
15
+ satysfi $( SATYSFI_OPTS ) $< -o $@
10
16
11
17
.PHONY : clean
12
18
Original file line number Diff line number Diff line change 1
1
@require: stdjareport
2
+ @require: bibyfi/bibyfi
3
+ @require: bibyfi/bibyfi-IEEETran
2
4
@import: ../example-bib
3
- @import: ../bibyfi
4
- @import: ../bibyfi-IEEETran
5
5
6
6
let bibyfi-theme = BiByFiIEEETran.theme (|
7
7
name-shrink = true;
Original file line number Diff line number Diff line change 1
1
@require: stdjareport
2
+ @require: bibyfi/bibyfi
3
+ @require: bibyfi/bibyfi-IEEETran
2
4
@import: ../example-bib
3
- @import: ../bibyfi
4
- @import: ../bibyfi-IEEETran
5
5
6
6
let bibyfi-theme = BiByFiIEEETran.theme (|
7
7
name-shrink = true;
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ name: "satysfi-bibyfi-doc"
3
+ version: "0.0.1"
4
+ synopsis: "Document: A bibliography framework for SATySFi"
5
+ maintainer: "Nakano Masaki<namachan10777@gmail.com>"
6
+ authors: [
7
+ "Nakano Masaki<namachan10777@gmail.com>"
8
+ "T. Suwa"
9
+ ]
10
+ homepage: "https://github.com/namachan10777/BiByFi"
11
+ bug-reports: "https://github.com/namachan10777/BiByFi/issues"
12
+ dev-repo: "git+https://github.com/namachan10777/BiByFi.git"
13
+ depends: [
14
+ "satysfi" {>= "0.0.3" & < "0.0.5"}
15
+ "satyrographos" {>= "0.0.2.3" & < "0.0.3"}
16
+ "satysfi-dist"
17
+
18
+ # You may want to include the corresponding library
19
+ "satysfi-bibyfi" {= "%{version}%"}
20
+ ]
21
+ build: [
22
+ ["satyrographos" "opam" "build"
23
+ "-name" "bibyfi-doc"
24
+ "-prefix" "%{prefix}%"
25
+ "-script" "%{build}%/Satyristes"]
26
+ ]
27
+ install: [
28
+ ["satyrographos" "opam" "install"
29
+ "-name" "bibyfi-doc"
30
+ "-prefix" "%{prefix}%"
31
+ "-script" "%{build}%/Satyristes"]
32
+ ]
You can’t perform that action at this time.
0 commit comments