-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathmg_bookdoc_library.pro
More file actions
24 lines (20 loc) · 727 Bytes
/
Copy pathmg_bookdoc_library.pro
File metadata and controls
24 lines (20 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
; docformat = 'rst'
;+
; Make the user API documentation for the library in LaTeX format.
;-
pro mg_bookdoc_library
compile_opt strictarr
args = command_line_args(count=nargs)
root = nargs gt 1L ? args[0] : mg_src_root() ; location of this file
idldoc, root=filepath('src', root=root), $
output=filepath('api-bookdocs', root='.'), $
/user, $
overview=filepath('overview.txt', root=root), $
footer=filepath('footer.html', root=root), $
title='mglib', $
subtitle='Personal IDL library for M. Galloy', $
/embed, index_level=1, format_style='rst', $
/nosource, $
template_prefix='latex-', $
comment_style='latex'
end