Fixes for Mitsuba PDF manual (#28)
* Changed bibliography package to biblatex (ACM bibtex is no longer supported) * Added the missing bumpy sphere image + the relevant Holzschuch cite * Fixed a plugin ref in normalmap * PDF requires two more runs of pdflatex after bibtex * The missing Stanford bunny image was removed (I couldn't get the material to work)metadata
parent
a1d574e9de
commit
9110048040
|
@ -78,8 +78,8 @@ def texify(texfile):
|
||||||
else:
|
else:
|
||||||
check_call(['pdflatex', texfile])
|
check_call(['pdflatex', texfile])
|
||||||
check_call(['bibtex', texfile.replace('.tex', '.aux')])
|
check_call(['bibtex', texfile.replace('.tex', '.aux')])
|
||||||
#check_call(['pdflatex', texfile])
|
check_call(['pdflatex', texfile])
|
||||||
#check_call(['pdflatex', texfile])
|
check_call(['pdflatex', texfile])
|
||||||
|
|
||||||
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
||||||
with open('plugins_generated.tex', 'w') as f:
|
with open('plugins_generated.tex', 'w') as f:
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 78 KiB |
32
doc/main.bib
32
doc/main.bib
|
@ -10,7 +10,7 @@
|
||||||
title = {{Building Volumetric Appearance Models of Fabric using Micro CT Imaging}},
|
title = {{Building Volumetric Appearance Models of Fabric using Micro CT Imaging}},
|
||||||
journal = {ACM Transactions on Graphics (Proceedings SIGGRAPH 2011)},
|
journal = {ACM Transactions on Graphics (Proceedings SIGGRAPH 2011)},
|
||||||
year = {2011},
|
year = {2011},
|
||||||
month = {July}
|
month = {7}
|
||||||
}
|
}
|
||||||
|
|
||||||
@article{Smits2005RGB,
|
@article{Smits2005RGB,
|
||||||
|
@ -325,7 +325,7 @@
|
||||||
year = {2012},
|
year = {2012},
|
||||||
volume = {31},
|
volume = {31},
|
||||||
number = {4},
|
number = {4},
|
||||||
month = {July}
|
month = {7}
|
||||||
}
|
}
|
||||||
|
|
||||||
@article{Hachisuka2009Stochastic,
|
@article{Hachisuka2009Stochastic,
|
||||||
|
@ -378,11 +378,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@inproceedings{Ward1992Irradiance,
|
@inproceedings{Ward1992Irradiance,
|
||||||
author = "Greg Ward and Paul Heckbert",
|
author = {Greg Ward and Paul Heckbert},
|
||||||
title = "Irradiance Gradients",
|
title = {Irradiance Gradients},
|
||||||
booktitle = "Eurographics Rendering Workshop",
|
booktitle = {Eurographics Rendering Workshop},
|
||||||
pages = "85-98",
|
pages = {85--98},
|
||||||
month = "May",
|
month = {5},
|
||||||
year = "1992",
|
year = "1992",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -392,7 +392,7 @@
|
||||||
journal = {SIGGRAPH Comput. Graph.},
|
journal = {SIGGRAPH Comput. Graph.},
|
||||||
volume = {22},
|
volume = {22},
|
||||||
number = {4},
|
number = {4},
|
||||||
month = jun,
|
month = {6},
|
||||||
year = {1988},
|
year = {1988},
|
||||||
pages = {85--92},
|
pages = {85--92},
|
||||||
publisher = {ACM},
|
publisher = {ACM},
|
||||||
|
@ -572,7 +572,7 @@
|
||||||
publisher = {OSA},
|
publisher = {OSA},
|
||||||
title = {Average irregularity representation of a rough surface for ray reflection},
|
title = {Average irregularity representation of a rough surface for ray reflection},
|
||||||
volume = {65},
|
volume = {65},
|
||||||
month = {May},
|
month = {5},
|
||||||
year = {1975}
|
year = {1975}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -582,5 +582,17 @@
|
||||||
journal = {Computer Graphics Forum},
|
journal = {Computer Graphics Forum},
|
||||||
publisher = {Blackwell Publishing},
|
publisher = {Blackwell Publishing},
|
||||||
year = {2014},
|
year = {2014},
|
||||||
month = Jun
|
month = {6}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article {Holzschuch2015,
|
||||||
|
author = {Holzschuch, Nicolas},
|
||||||
|
title = {Accurate Computation of Single Scattering in Participating Media with Refractive Boundaries},
|
||||||
|
journal = {Computer Graphics Forum},
|
||||||
|
publisher = {Wiley},
|
||||||
|
volume = {34},
|
||||||
|
number = {6},
|
||||||
|
pages = {48--59},
|
||||||
|
year = {2015},
|
||||||
|
MONTH = Sep
|
||||||
}
|
}
|
||||||
|
|
21
doc/main.tex
21
doc/main.tex
|
@ -1,4 +1,6 @@
|
||||||
\documentclass[footinclude=false,11pt,DIV11]{scrartcl}
|
% !TEX engine = pdflatex
|
||||||
|
% In case one tries to compile from within atom instead of gendoc.py
|
||||||
|
\documentclass[footinclude=false,11pt,DIV=11]{scrartcl}
|
||||||
|
|
||||||
% Wenzel's standard prelude
|
% Wenzel's standard prelude
|
||||||
% ----- 8< ----- 8< ------
|
% ----- 8< ----- 8< ------
|
||||||
|
@ -40,8 +42,8 @@
|
||||||
\setcounter{secnumdepth}{3}
|
\setcounter{secnumdepth}{3}
|
||||||
\setcounter{tocdepth}{3}
|
\setcounter{tocdepth}{3}
|
||||||
|
|
||||||
\newcommand{\MitsubaVersion}{0.5.0}
|
\newcommand{\MitsubaVersion}{0.6.0}
|
||||||
\newcommand{\MitsubaYear}{2014}
|
\newcommand{\MitsubaYear}{2017}
|
||||||
|
|
||||||
\typearea[current]{last}
|
\typearea[current]{last}
|
||||||
\raggedbottom
|
\raggedbottom
|
||||||
|
@ -60,6 +62,11 @@
|
||||||
\addtokomafont{descriptionlabel}{\rmfamily}
|
\addtokomafont{descriptionlabel}{\rmfamily}
|
||||||
\pagestyle{scrheadings}
|
\pagestyle{scrheadings}
|
||||||
|
|
||||||
|
% Section and subsubsection numbers in TOC need more numwidth
|
||||||
|
\DeclareTOCStyleEntry[numwidth=3em]{default}{section}
|
||||||
|
\DeclareTOCStyleEntry[numwidth=4em]{default}{subsection}
|
||||||
|
\DeclareTOCStyleEntry[numwidth=5em]{default}{subsubsection}
|
||||||
|
|
||||||
\usepackage[
|
\usepackage[
|
||||||
bookmarks,
|
bookmarks,
|
||||||
bookmarksnumbered,
|
bookmarksnumbered,
|
||||||
|
@ -76,6 +83,11 @@
|
||||||
pdfstartview=FitH
|
pdfstartview=FitH
|
||||||
]{hyperref}
|
]{hyperref}
|
||||||
|
|
||||||
|
% Bibliography
|
||||||
|
\usepackage{csquotes}
|
||||||
|
\usepackage[backend=bibtex,style=numeric,uniquename=init]{biblatex}
|
||||||
|
\addbibresource{main.bib}
|
||||||
|
|
||||||
\definecolor{myblue}{rgb}{0,.1,.6}
|
\definecolor{myblue}{rgb}{0,.1,.6}
|
||||||
\definecolor{myred}{rgb}{0.63,.16,.16}
|
\definecolor{myred}{rgb}{0.63,.16,.16}
|
||||||
\definecolor{lstshade}{gray}{0.95}
|
\definecolor{lstshade}{gray}{0.95}
|
||||||
|
@ -181,7 +193,6 @@
|
||||||
\include{acknowledgements}
|
\include{acknowledgements}
|
||||||
\include{gpl-v3}
|
\include{gpl-v3}
|
||||||
|
|
||||||
\bibliographystyle{acm}
|
\printbibliography[heading=bibintoc]
|
||||||
\bibliography{main}
|
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
|
|
|
@ -34,7 +34,7 @@ MTS_NAMESPACE_BEGIN
|
||||||
* be affected by the normal map}
|
* be affected by the normal map}
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* This plugin is conceptually similar to the \pluginref{bump} map plugin
|
* This plugin is conceptually similar to the \pluginref{bumpmap} plugin
|
||||||
* but uses a normal map instead of a bump map. A normal map is a RGB texture, whose color channels
|
* but uses a normal map instead of a bump map. A normal map is a RGB texture, whose color channels
|
||||||
* encode the XYZ coordinates of the desired surface normals.
|
* encode the XYZ coordinates of the desired surface normals.
|
||||||
* These are specified \emph{relative} to the local shading frame,
|
* These are specified \emph{relative} to the local shading frame,
|
||||||
|
|
|
@ -70,7 +70,6 @@ static ref<Mutex> mutex = new Mutex;
|
||||||
*
|
*
|
||||||
* \renderings{
|
* \renderings{
|
||||||
* \rendering{The bumpy sphere test scene rendered with amber material}{bumpy_sphere.jpg}
|
* \rendering{The bumpy sphere test scene rendered with amber material}{bumpy_sphere.jpg}
|
||||||
* \rendering{The Stanford Bunny rendered with a translucent material}{bunny_single.jpg}
|
|
||||||
* }
|
* }
|
||||||
|
|
||||||
* This plugin implements the single scattering model in participating media
|
* This plugin implements the single scattering model in participating media
|
||||||
|
|
Loading…
Reference in New Issue