Git Product home page Git Product logo

sublime-dblp's Introduction

DBLP for Sublime Text

A plugin for SublimeText 3 for working with DBLP, the Computer Science Bibliography.

DBLP for Sublime Text can be installed directly using Package Control.

Features

The plugin offers the following commands (available from the Command Palette).

DBLP: Lookup

It asks the user for a query and searches DBLP for papers matching it. Then a quick panel is displayed with the results. When a result is selected, a panel at the bottom shows the corresponding entry (in Markdown syntax).

DBLP: Insert Citation Key

After doing a lookup, the citation key of the selected entry is inserted in the current view.

DBLP: Insert \cite Command

After doing a lookup, the citation key of the selected entry is inserted in the current view, wrapped in a \cite macro. For use with LaTeX documents.

DBLP: Insert Citation Entry (BibTeX)

After doing a lookup, the full citation entry of the selected record is inserted in the current view, in BibTeX format.

DBLP: Insert Citation Entry (Markdown)

After doing a lookup, the full citation entry of the selected record is inserted in the current view, in Markdown format.

DBLP: Insert Citation Entry (XML)

After doing a lookup, the full citation entry of the selected record is inserted in the current view, in XML format.

Shortcuts

You can install a keyboard shortcut by adding variations of the following

{
    "keys": ["ctrl+d", "ctrl+k"],
    "command": "dblp_search",
    "context": [
        {"key": "selector", "operand": "text.tex.latex", "operator": "equal"}
    ]
},
{
    "keys": ["ctrl+d", "ctrl+c"],
    "command": "dblp_insert_citation",
    "args": {"format": "bibtex"},
    "context": [
        {"key": "selector", "operand": "text.bibtex", "operator": "equal"}
    ]
},
{
    "keys": ["ctrl+d", "ctrl+c"],
    "command": "dblp_insert_citation",
    "args": {"format": "xml"},
    "context": [
        {"key": "selector", "operand": "text.xml", "operator": "equal"}
    ]
}

to your user key bindings.

Advanced usage

The dblp_search offers two additional arguments:

  • query_snippet: the snippet initially filling the input panel for the search query (can be a ST snippet);
  • query: the query itself. If this argument is specified, no input is asked to the user and the search is performed straight away;
  • max_hits: the maximum number of results shown in the quick panel (default 500).

The dblp_insert_citation offers advanced arguments:

  • query_snippet, query and max_hits as above;

  • format: the format for the citation (default bibtex). It could be any of:

    • the DBLP provided bibtex, bibtex_std, bibtex_crossref, bib0, bib1, bib2, xml, rdf
    • markdown
    • a custom format for which you have to set the template argument (see below).
  • template: a template string using any of the fields key, cite_key, title, year, venue, authors and url. This is only used if the format is not one of the DBLP supported ones. The default template is a Markdown entry:

      # ${title}
        > ${authors}
          ${venue} (${year})
        [${key}](${url})
    

This plugin can be used in conjunction with rDBLP to automatically maintain your bib files for your current publication.

Acknowledgements

This plugin is a fork of the DBLP Search plugin for ST2, but it evolved as a complete rewrite.


The DBLP service provides open bibliographic information on major computer science journals and proceedings. DBLP is a joint service of the University of Trier and Schloss Dagstuhl. For more information check out their F.A.Q.


sublime-dblp's People

Contributors

bordaigorl avatar bouncner avatar grundprinzip avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.