Skip to content

Commit db518b1

Browse files
Docs changes for integrating into thesis
1 parent 9c04816 commit db518b1

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
tests/dsls/js/package-lock.json
55
tests/dsls/js/node_modules
66
doc/
7+
tex/

scribblings/common.rkt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(provide (all-defined-out))
44

5-
(require scribble/manual)
5+
(require scribble/manual scriblib/render-cond scribble/core)
66

77
(define (tech/reference str)
88
(tech #:doc '(lib "scribblings/reference/reference.scrbl") str))
@@ -14,4 +14,10 @@
1414
(seclink sec #:doc '(lib "scribblings/reference/reference.scrbl") str))
1515

1616
(define (seclink/guide sec str)
17-
(seclink sec #:doc '(lib "scribblings/guide/guide.scrbl") str))
17+
(seclink sec #:doc '(lib "scribblings/guide/guide.scrbl") str))
18+
19+
20+
(define (mk-exact . items)
21+
(cond-element
22+
[latex (make-element (make-style #false '(exact-chars)) items)]
23+
[else ""]))

scribblings/reference/specifying.scrbl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ The following subsections address each kind of declaration allowed within the
2424

2525

2626
@section{Binding classes}
27+
@mk-exact["\\label{doc:binding-classes}"]
28+
2729

2830
@deftech{Binding classes} distinguish types of binding. When a reference resolves to a
2931
binder, it is an error if the binding class declared for the reference position

scribblings/tutorial/main.scrbl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
@(require (for-label racket))
44

5-
@title[#:style '(toc unnumbered)]{Tutorial}
5+
@title[#:style '(toc)]{Tutorial}
66

77
The tutorial is broken down into illustrative examples:
88

0 commit comments

Comments
 (0)