Skip to content

SebastianM-C/PkgCite.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PkgCite

Stable Dev Build Status Coverage

Installation

To install this package open the REPL and enter the package manager mode by pressing the ] key and then use the following

pkg> add PkgCite

Usage

To get all the dependencies in the current environment, use

using PkgCite

# Be sure to be in the appropriate environment

get_tool_citation()

which will print a sentence with the citations for all the packages used in the current environment and will automatically copy it to the clipboard. It will also create a julia_citations.bib file in the current working directory with all the citations collected form the CITATION.bib files corresponding to the dependecies of the current active environment.

If you only need the .bib file with all the citations, use

get_citations()

Note: get_citations doesn't include the citation for the julia language itself.