citeproc-java is a Citation Style Language (CSL) processor for Java. It interprets CSL styles and generates citations and bibliographies.
The full documentation is available at the project's website:
https://michel-kraemer.github.io/citeproc-java/
The library includes citeproc-js, a CSL processor written in JavaScript. citeproc-js has been created by Frank G. Bennett and is licensed under the Common Public Attribution License Version 1.0.
The BibTeX name parser's grammar is based on the one found in the bibtex-ruby. The original grammar is licensed under GPL v3. It has been converted to ANTLR and is released here under the Apache License 2.0 by permission of the original author Sylvester Keil.
The BibTeX to CSL converter is based on the mapping used in Docear as presented by Joeran Beel.
Docear is released under the GPLv2 but its code may also be reused in projects licensed under Apache License 2.0. The mapping is released here under the Apache License 2.0 by permission of Joeran Beel, Docear.
The algorithm that produces typographically correct quotation marks and apostrophes is based on smartquotes.js written by Kelly Martin and released under the MIT license. The code has been translated to Java and improved to support more edge cases as well as multiple languages.
citeproc-java is able to sort citations in a natural, language-sensitive way.
The implementation of this behaviour is loosely based on the Alphanum algorithm
by Dave Koelle and the
Java implementation
released under the MIT license. However, it has been extended to use a
java.text.Collator
for locale-sensitive comparison, and it is also able to
compare arbitrarily large numbers.
The implementation of the algorithm that converts strings to title case is based on the JavaScript library to-title-case by David Gouch released under the MIT license. The code has been translated to Java and was slightly modified to produce strings that adhere to the CSL specification.
citeproc-java is licensed under the Apache License, Version 2.0.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.