Citation
To cite this software, you can convert the CITATION.cff file to BibTeX or APA-like format using the cffconvert Docker image. For this, ensure that the valid CITATION.cff file is placed in the current directory.
Checking Validity
To check the validity of the CITATION.cff file, use the appropriate command for your operating system:
docker run --rm -v $PWD:/app citationcff/cffconvert --validate
docker run --rm -v %cd%:/app citationcff/cffconvert --validate
docker run --rm -v ${PWD}:/app citationcff/cffconvert --validate
Conversion Options
You have two options for conversion:
Print the result to standard output.
Write the result to a file.
Convert to BibTeX Format
Print to Standard Output
docker run --rm -v $PWD:/app citationcff/cffconvert -f bibtex
docker run --rm -v %cd%:/app citationcff/cffconvert -f bibtex
docker run --rm -v ${PWD}:/app citationcff/cffconvert -f bibtex
Write to a File
docker run --rm -v $PWD:/app citationcff/cffconvert -f bibtex -o bibtex.bib
docker run --rm -v %cd%:/app citationcff/cffconvert -f bibtex -o bibtex.bib
docker run --rm -v ${PWD}:/app citationcff/cffconvert -f bibtex -o bibtex.bib
Convert to APA-like Format
Print to Standard Output
docker run --rm -v $PWD:/app citationcff/cffconvert -f apalike
docker run --rm -v %cd%:/app citationcff/cffconvert -f apalike
docker run --rm -v ${PWD}:/app citationcff/cffconvert -f apalike
Write to a File
docker run --rm -v $PWD:/app citationcff/cffconvert -f apalike -o apalike
docker run --rm -v %cd%:/app citationcff/cffconvert -f apalike -o apalike
docker run --rm -v ${PWD}:/app citationcff/cffconvert -f apalike -o apalike