Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
fcf96d1f
Commit
fcf96d1f
authored
May 31, 2010
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build PDF out of rst docs
parent
5d125a7d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
buildall_pdf
doc/latex2sphinx/buildall_pdf
+17
-0
conf.py
doc/latex2sphinx/conf.py
+2
-0
No files found.
doc/latex2sphinx/buildall_pdf
0 → 100644
View file @
fcf96d1f
#!/bin/bash
LANGUAGES
=
"
${
LANGUAGES
:
=c cpp py
}
"
mkdir
-p
$LANGUAGES
tput clear
python latex.py ../online-opencv.tex
$LANGUAGES
||
exit
for
D
in
$LANGUAGES
do
echo
$D
mkdir
-p
_build/latex/
$D
cp
conf.py
$D
cp
mymath.sty _build/latex/
$D
TEXINPUTS
=
$PWD
: sphinx-build
-w
$D
/sphinx.errors
-D
"lang=
$D
"
-b
latex
-d
_build/doctrees/
$D
$D
_build/latex/
$D
(
cd
_build/latex/
$D
&&
rm
*
.aux
*
.toc
*
.log
&&
pdflatex opencv.tex
)
done
doc/latex2sphinx/conf.py
View file @
fcf96d1f
...
...
@@ -200,3 +200,5 @@ pngmath_latex_preamble = '\usepackage{mymath}\usepackage{amsmath}\usepackage{bbm
# 'http://docs.python.org/': None,
# }
intersphinx_mapping
=
{}
latex_elements
=
{
'preamble'
:
'
\
usepackage{mymath}
\
usepackage{amssymb}
\
usepackage{amsmath}
\
usepackage{bbm}'
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment