diff options
author | Sven Gothel <[email protected]> | 2014-03-24 07:28:49 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-03-24 07:28:49 +0100 |
commit | 6622756a97c907e2647d07dad55883c4906413ea (patch) | |
tree | 479cafac54305110e72e0676ea537fc87d083358 /doc | |
parent | f1d5c9bde14ad958d7f865009b7cef2492194fd6 (diff) |
Adding [proposal] for jogamp.bib, a bibtex entry for citations
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bibtex/Makefile | 15 | ||||
-rw-r--r-- | doc/bibtex/jogamp-bib-test.pdf | bin | 0 -> 15613 bytes | |||
-rw-r--r-- | doc/bibtex/jogamp-bib-test.tex | 29 | ||||
-rw-r--r-- | doc/bibtex/jogamp.bib | 20 |
4 files changed, 64 insertions, 0 deletions
diff --git a/doc/bibtex/Makefile b/doc/bibtex/Makefile new file mode 100644 index 0000000..09c5da7 --- /dev/null +++ b/doc/bibtex/Makefile @@ -0,0 +1,15 @@ + +.SUFFIXES: .pdf .dvi .tex + +.dvi.pdf: + dvipdf $< + +.tex.dvi: + latex $< + bibtex `basename $< .tex` + latex $< + latex $< + +clean: + rm -f *.log *.dvi *.aux *.bbl *.blg *.out + diff --git a/doc/bibtex/jogamp-bib-test.pdf b/doc/bibtex/jogamp-bib-test.pdf Binary files differnew file mode 100644 index 0000000..5471587 --- /dev/null +++ b/doc/bibtex/jogamp-bib-test.pdf diff --git a/doc/bibtex/jogamp-bib-test.tex b/doc/bibtex/jogamp-bib-test.tex new file mode 100644 index 0000000..d3ec3ad --- /dev/null +++ b/doc/bibtex/jogamp-bib-test.tex @@ -0,0 +1,29 @@ +\documentclass[11pt]{article} + +\usepackage{hyperref} +%\usepackage{fullpage} +%\usepackage{graphicx} % to add graphics +%\usepackage{multicol} +%\usepackage{amsmath} +%\usepackage{etex} +%\reserveinserts{18} +%\usepackage{morefloats} +%\usepackage{wasysym} % for per mil +%\usepackage{subfigure} + +\begin{document} + +\Large +\title{\bf JogAmp BibTex Test Document} + +\author{{\bf Sven Gothel}} + + +\maketitle + +The software uses JogAmp\cite{jogamp10}. + +\bibliographystyle{plain} +\bibliography{jogamp} +\end{document} + diff --git a/doc/bibtex/jogamp.bib b/doc/bibtex/jogamp.bib new file mode 100644 index 0000000..746a4eb --- /dev/null +++ b/doc/bibtex/jogamp.bib @@ -0,0 +1,20 @@ +@Misc{jogamp10, +title = {{JogAmp}: {High} {Performance} {Cross} {Platform} {Java} {Libraries} for + {3D} {Graphics}, {Multimedia} and {Processing}}, +year = {2003--2014}, +howpublished = {\url{http://jogamp.org/}}, +abstract = {JogAmp provides the high performance cross platform libraries + JOGL, JOCL and JOAL to the OpenGL, OpenCL and OpenAL APIs for the Java Virtual Machine. + GlueGen, a toolkit part of JogAmp, provides generation of Java and Java Native Interface (JNI) + code as required to call C functions of native libraries. + JOGL gives full access to all OpenGL desktop and mobile APIs, while integrating + existing native windowing toolkits and providing it's own, NEWT. + Further it adds access to multimedia streams and provides hardware accelerated + rendering of curves and text. + JOCL gives full access to the OpenCL processing APIs. + JOAL gives full access to the OpenAL audio APIs. + JogAmp is free-software and licensed under the permissible New BSD 2-clause license or compatibles. + JogAmp is authored by multiple individuals, see the source code repository commit messages for details. + } +} + |