{"id":25348408,"url":"https://github.com/michelecotrufo/pdf2bib","last_synced_at":"2025-10-29T17:31:20.058Z","repository":{"id":57451443,"uuid":"427854674","full_name":"MicheleCotrufo/pdf2bib","owner":"MicheleCotrufo","description":"A  python library/command-line tool to quickly and automatically generate BibTeX data starting from the pdf file of a scientific publication.","archived":false,"fork":false,"pushed_at":"2024-08-09T09:24:56.000Z","size":23011,"stargazers_count":69,"open_issues_count":8,"forks_count":9,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-18T10:17:32.272Z","etag":null,"topics":["arxiv","bibtex","bibtex-entry","bibtex-parser","doi","extract","pdf","pdf-files","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MicheleCotrufo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-14T06:26:05.000Z","updated_at":"2025-01-10T08:16:19.000Z","dependencies_parsed_at":"2024-06-22T05:14:13.045Z","dependency_job_id":null,"html_url":"https://github.com/MicheleCotrufo/pdf2bib","commit_stats":{"total_commits":49,"total_committers":1,"mean_commits":49.0,"dds":0.0,"last_synced_commit":"5f7c11de0ecacc45687a25e98e150d5e088120c4"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MicheleCotrufo%2Fpdf2bib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MicheleCotrufo%2Fpdf2bib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MicheleCotrufo%2Fpdf2bib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MicheleCotrufo%2Fpdf2bib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MicheleCotrufo","download_url":"https://codeload.github.com/MicheleCotrufo/pdf2bib/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238861538,"owners_count":19542973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arxiv","bibtex","bibtex-entry","bibtex-parser","doi","extract","pdf","pdf-files","python"],"created_at":"2025-02-14T15:21:59.049Z","updated_at":"2025-10-29T17:31:16.411Z","avatar_url":"https://github.com/MicheleCotrufo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pdf2bib\n\n```pdf2bib``` is a Python library/command-line tool to extract bibliographic information from the .pdf file of a publication \n(or from a folder containing several .pdf files), and automatically generate BibTeX entries. The pdf file can be either a paper published in a scientific journal (i.e. with\na DOI associated to it), or an [arXiv](https://arxiv.org/about/donate) preprint. The bibliographic information is retrieved by querying public archives, thus **an internet connection is required**.\n\n```pdf2bib``` can be used either from [command line](#command-line-usage), or inside your [python script](#usage-inside-a-python-script) or, only for Windows, directly from the [right-click context menu](#installing-the-shortcuts-in-the-right-click-context-menu-of-windows) of a pdf file or a folder.\n\n[![Downloads](https://pepy.tech/badge/pdf2bib)](https://pepy.tech/project/pdf2bib?versions=1.0.2\u0026versions=1.1\u0026versions=1.2)[![Downloads](https://pepy.tech/badge/pdf2bib/month)](https://pepy.tech/project/pdf2bib?versions=1.0.2\u0026versions=1.1\u0026versions=1.2)\n[![Pip Package](https://img.shields.io/pypi/v/pdf2bib?logo=PyPI)](https://pypi.org/project/pdf2bib?versions=1.2)\n\n## Warning\n```pdf2bib``` uses ```pdf2doi``` to find the DOI of a paper. Versions of ```pdf2doi``` prior to the **1.6** are affected by a very annoying bug. By default, after finding the DOI of a pdf paper, ```pdf2doi``` will store the DOI into the metadata of the pdf file. Due to a bug, the size of the pdf file doubles everytime that a metadata was added. This bug has been fixed in all versions of ```pdf2doi``` \u003e= 1.6. \n\nIf you have pdf files that have been affected by this bug, you can use ```pdf2doi``` to fix it. After updating ```pdf2doi``` to a version \u003e 1.6, run ```pdf2doi path/to/folder/containing/pdf/files -id ''```. This will restore the pdf files to their original size.\n\nThanks Ole Steuernagel for pointing out this issue.\n\n\n## Latest stable version\nThe latest stable version of ```pdf2bib``` is the **1.2**. See [here](https://github.com/MicheleCotrufo/pdf2bib/releases) for the full change log.\n\n### [v1.2] - 2024-06-18\n\n#### Main changes\n- Added the CLI option ```-nostore```, which allows the user to opt out of the default behaviour of ```pdf2doi``` regarding storing the found identifier into the pdf metadata. When ```-nostore``` is added to the CLI invokation of ```pdf2bib```, the pdf files will not be modified by ```pdf2doi```.\n\n#### Added\n- Make sure entry id can not contain commas https://github.com/MicheleCotrufo/pdf2bib/pull/8.\n- Make sure that the input variable target is converted to a string before processing, and Fix trailing colon for some PDF files https://github.com/MicheleCotrufo/pdf2bib/pull/16.\n\n\n## Installation\n\nUse the package manager pip to install pdf2bib.\n\n```bash\npip install pdf2bib==1.2\n```\n\nUnder Windows, it is also possible to add [shortcuts to the right-click context menu](#installing-the-shortcuts-in-the-right-click-context-menu-of-windows).\n\n\n\n## Table of Contents\n - [Installation](#installation)\n - [Description](#description)\n - [Usage](#usage)\n    * [Command line usage](#command-line-usage)\n        + [Creating a bib file from a folder](#creating-a-bib-file-from-a-folder)\n        + [Manually associate the correct identifier to a file from command line](#manually-associate-the-correct-identifier-to-a-file-from-command-line)\n    * [Usage inside a python script](#usage-inside-a-python-script)\n        + [Manually associate the correct identifier to a file](#manually-associate-the-correct-identifier-to-a-file)\n - [Installing the shortcuts in the right-click context menu of Windows](#installing-the-shortcuts-in-the-right-click-context-menu-of-windows)\n  -[Contributing](#contributing)\n - [License](#license)\n - [Acknowledgment](#acknowledgment)\n - [Donating](#donating)\n\n\n## Description\n```pdf2bib``` relies on the library [pdf2doi](https://github.com/MicheleCotrufo/pdf2doi), which can automatically find a valid identifier of a scientific publication (i.e. either a DOI or an arxiv ID)\nstarting from a .pdf file. ```pdf2doi``` will query public archives (e.g., http://dx.doi.org for DOIs and http://export.arxiv.org for arxiv IDs) in order to validate any identifier found. The validation process returns raw BibTeX data (see also [here](https://github.com/MicheleCotrufo/pdf2doi#usage-inside-a-python-script)), which is then used by\n```pdf2bib``` to generate a valid BibTeX entry in the format\n```\n@article{[LastNameFirstAuthor][PublicationYear][FirstWordTitle],\n        title = ...,\n        volume = ...,\n        issue = ...,\n        page = ...,\n        publisher = ...,\n        url = ...,\n        doi = ...,\n        journal = ...,\n        year = ...,\n        month = ...,\n        author = ...\n}\n```\nIn the current version the format of the BibTeX entry is not customizable by the user (unless you want to change the code - have fun :D),\nbut this functionality will be implemented in future realeses.\n\n## Usage\n\n```pdf2bib``` can be used either as a [stand-alone application](#command-line-usage) invoked from the command line, or by [importing it in your python project](#usage-inside-a-python-script) or, only for Windows, \ndirectly from the [right-click context menu](#installing-the-shortcuts-in-the-right-click-context-menu-of-windows) of a pdf file or a folder.\n\n### Command line usage\n```pdf2bib``` can be invoked directly from the command line, without having to open a python console.\nThe simplest command-line invokation is\n\n```bash\npdf2bib 'path/to/target'\n```\nwhere ```target``` is either a valid pdf file or a directory containing pdf files. Adding the optional command '-v' increases the output verbosity,\ndocumenting all steps.\nFor example, when targeting the folder [examples](/examples) we get the following output\n\n```bash\npdf2bib examples -v\n[pdf2bib]: Looking for pdf files in the folder examples...\n[pdf2bib]: Found 4 pdf files.\n[pdf2bib]: ................\n[pdf2bib]: Trying to extract data to generate the BibTeX entry for the file: examples\\1-s2.0-0021999186900938-main.pdf\n[pdf2bib]: Calling pdf2doi...\n[pdf2doi]: Method #1: Looking for a valid identifier in the document infos...\n[pdf2doi]: Validating the possible DOI 10.1016/0021-9991(86)90093-8 via a query to dx.doi.org...\n[pdf2doi]: The DOI 10.1016/0021-9991(86)90093-8 is validated by dx.doi.org.\n[pdf2doi]: A valid DOI was found in the document info labelled '/identifier'.\n[pdf2bib]: pdf2doi found a valid identifier for this paper. Trying to parse the data obtained by pdf2doi into valid BibTeX data..\n[pdf2bib]: A valid BibTeX entry was generated.\n[pdf2bib]: ................\n[pdf2bib]: Trying to extract data to generate the BibTeX entry for the file: examples\\chaumet_JAP_07.pdf\n[pdf2bib]: Calling pdf2doi...\n[pdf2doi]: Method #1: Looking for a valid identifier in the document infos...\n[pdf2doi]: Validating the possible DOI 10.1063/1.2409490 via a query to dx.doi.org...\n[pdf2doi]: The DOI 10.1063/1.2409490 is validated by dx.doi.org.\n[pdf2doi]: A valid DOI was found in the document info labelled '/identifier'.\n[pdf2bib]: pdf2doi found a valid identifier for this paper. Trying to parse the data obtained by pdf2doi into valid BibTeX data..\n[pdf2bib]: A valid BibTeX entry was generated.\n[pdf2bib]: ................\n[pdf2bib]: Trying to extract data to generate the BibTeX entry for the file: examples\\PhysRevLett.116.061102.pdf\n[pdf2bib]: Calling pdf2doi...\n[pdf2doi]: Method #1: Looking for a valid identifier in the document infos...\n[pdf2doi]: Validating the possible DOI 10.1103/PhysRevLett.116.061102 via a query to dx.doi.org...\n[pdf2doi]: The DOI 10.1103/PhysRevLett.116.061102 is validated by dx.doi.org.\n[pdf2doi]: A valid DOI was found in the document info labelled '/identifier'.\n[pdf2bib]: pdf2doi found a valid identifier for this paper. Trying to parse the data obtained by pdf2doi into valid BibTeX data..\n[pdf2bib]: A valid BibTeX entry was generated.\n[pdf2bib]: ................\n[pdf2bib]: Trying to extract data to generate the BibTeX entry for the file: examples\\s41586-019-1666-5.pdf\n[pdf2bib]: Calling pdf2doi...\n[pdf2doi]: Method #1: Looking for a valid identifier in the document infos...\n[pdf2doi]: Validating the possible DOI 10.1038/s41586-019-1666-5 via a query to dx.doi.org...\n[pdf2doi]: The DOI 10.1038/s41586-019-1666-5 is validated by dx.doi.org.\n[pdf2doi]: A valid DOI was found in the document info labelled '/doi'.\n[pdf2bib]: pdf2doi found a valid identifier for this paper. Trying to parse the data obtained by pdf2doi into valid BibTeX data..\n[pdf2bib]: A valid BibTeX entry was generated.\n[pdf2bib]: ................\n@article{jordan1986an,\n        title = {An efficient numerical evaluation of the Green's function for the Helmholtz operator on periodic structures},\n        volume = {63},\n        issue = {1},\n        page = {222-235},\n        publisher = {Elsevier BV},\n        url = {http://dx.doi.org/10.1016/0021-9991(86)90093-8},\n        doi = {10.1016/0021-9991(86)90093-8},\n        journal = {Journal of Computational Physics},\n        year = {1986},\n        month = {3},\n        author = {Kirk E Jordan and Gerard R Richter and Ping Sheng}\n}\n@article{chaumet2007coupled,\n        title = {Coupled dipole method to compute optical torque: Application to a micropropeller},\n        volume = {101},\n        issue = {2},\n        page = {023106},\n        publisher = {AIP Publishing},\n        url = {http://dx.doi.org/10.1063/1.2409490},\n        doi = {10.1063/1.2409490},\n        journal = {Journal of Applied Physics},\n        year = {2007},\n        month = {1},\n        author = {Patrick C. Chaumet and C. Billaudeau}\n}\n@article{2016observation,\n        title = {Observation of Gravitational Waves from a Binary Black Hole Merger},\n        volume = {116},\n        issue = {6},\n        publisher = {American Physical Society (APS)},\n        url = {http://dx.doi.org/10.1103/PhysRevLett.116.061102},\n        doi = {10.1103/physrevlett.116.061102},\n        journal = {Physical Review Letters},\n        year = {2016},\n        month = {2}\n}\n@article{arute2019quantum,\n        title = {Quantum supremacy using a programmable superconducting processor},\n        volume = {574},\n        issue = {7779},\n        page = {505-510},\n        publisher = {Springer Science and Business Media LLC},\n        url = {http://dx.doi.org/10.1038/s41586-019-1666-5},\n        doi = {10.1038/s41586-019-1666-5},\n        journal = {Nature},\n        year = {2019},\n        month = {10},\n        author = {Frank Arute and Kunal Arya and Ryan Babbush and Dave Bacon and Joseph C. Bardin and Rami Barends and Rupak Biswas and Sergio Boixo and Fernando G. S. L. Brandao and David A. Buell and Brian Burkett and Yu Chen and Zijun Chen and Ben Chiaro and Roberto Collins and William Courtney and Andrew Dunsworth and Edward Farhi and Brooks Foxen and Austin Fowler and Craig Gidney and Marissa Giustina and Rob Graff and Keith Guerin and Steve Habegger and Matthew P. Harrigan and Michael J. Hartmann and Alan Ho and Markus Hoffmann and Trent Huang and Travis S. Humble and Sergei V. Isakov and Evan Jeffrey and Zhang Jiang and Dvir Kafri and Kostyantyn Kechedzhi and Julian Kelly and Paul V. Klimov and Sergey Knysh and Alexander Korotkov and Fedor Kostritsa and David Landhuis and Mike Lindmark and Erik Lucero and Dmitry Lyakh and Salvatore Mandrà and Jarrod R. McClean and Matthew McEwen and Anthony Megrant and Xiao Mi and Kristel Michielsen and Masoud Mohseni and Josh Mutus and Ofer Naaman and Matthew Neeley and Charles Neill and Murphy Yuezhen Niu and Eric Ostby and Andre Petukhov and John C. Platt and Chris Quintana and Eleanor G. Rieffel and Pedram Roushan and Nicholas C. Rubin and Daniel Sank and Kevin J. Satzinger and Vadim Smelyanskiy and Kevin J. Sung and Matthew D. Trevithick and Amit Vainsencher and Benjamin Villalonga and Theodore White and Z. Jamie Yao and Ping Yeh and Adam Zalcman and Hartmut Neven and John M. Martinis}\n}\n```\nEvery line which begins with '[pdf2doi]' or '[pdf2bib]' is omitted when the optional command '-v' is absent. It is also possible to store all bibtex entries into\na text file, or into the system clipboard, by using the optional arguments ```-s FILENAME_BIBTEX``` and ```-clip```\n\n```bash\npdf2bib examples -s bibtex.txt -clip\nAll available bibtex entries have been stored in the file bibtex.txt\nAll available bibtex entries have been stored in the system clipboard\n```\n\nA list of all optional arguments can be generated by ```pdf2bib --h```\n```bash\npdf2bib --h\nusage: pdf2bib [-h] [-v] [-nostore] [-s FILENAME_BIBTEX] [-clip] [-install--right--click] [-uninstall--right--click]\n               [path ...]\n\nGenerate BibTeX entries of scientific publications starting from the pdf files. It requires an internet connection.\n\npositional arguments:\n  path                  Relative path of the target pdf file or of the targe folder.\n\noptions:\n  -h, --help            show this help message and exit\n  -v, --verbose         Increase verbosity. By default (i.e. when not using -v), only the text of the found bibtex\n                        entries will be printed as output.\n  -nostore, --no_store_identifier_metadata\n                        pdf2bib uses the library pdf2doi to find the DOI/identifier of a publication. By default,\n                        anytime an identifier is found, pdf2doi also adds it to the metadata of the pdf file (if not\n                        present yet). By using this additional option, the identifier is not stored in the file\n                        metadata.\n  -s FILENAME_BIBTEX, --make_bibtex_file FILENAME_BIBTEX\n                        Create a text file inside the target directory, with name given by FILENAME_BIBTEX, containing\n                        the bibtex entry of each pdf file in the target folder (if any is found).\n  -clip, --save_bibtex_clipboard\n                        Store all found bibtex entries into the clipboard.\n  -install--right--click\n                        Add a shortcut to pdf2bib in the right-click context menu of Windows. This allows you to copy\n                        the bibtex entry of a pdf file (or all pdf files in a folder) into the clipboard by just right\n                        clicking on it! NOTE: this feature is only available on Windows.\n  -uninstall--right--click\n                        Uninstall the right-click context menu functionalities. NOTE: this feature is only available\n                        on Windows.\n```\n\n#### Creating a bib file from a folder\n```pdf2bib``` can be used to quickly generate a .bib file containining the BibTeX entries of all pdf files in a target folder, via the command\n\n```bash\npdf2bib 'path\\\\to\\\\target\\\\folder' -s bibtex.bib\n```\nThe generated .bib file can be imported into other software, such as [Zotero](https://www.zotero.org), to generate bibliograpies for, e.g. Microsoft Word.\n\n\n#### Manually associate the correct identifier to a file from command line\nOccasionally, the BibTeX generation process will fail (or give wrong results) if the library ```pdf2doi``` (which ```pdf2bib``` relies on to find a valid publication identifier)\nfails to  retrieve a DOI/identifier (or maybe it retrives the uncorrect one). This problem can be fixed\nby looking for the DOI/identifier manually and add it to the pdf metadata, by using ```pdf2doi``` as described [here](https://github.com/MicheleCotrufo/pdf2doi#manually-associate-the-correct-identifier-to-a-file-from-command-line).\nIn this way, any future use of ```pdf2bib``` on this file will always retrieve the correct BibTeX infos. \n\n### Usage inside a python script\n```pdf2bib``` can also be used as a library within a python script. The function ```pdf2bib.pdf2bib``` is the main point of entry. \nThe first input argument must be a valid path (either absolute or relative) to a pdf file or to a folder containing pdf files. \nThe same settings available in the command line operation (see above), are now available via the methods ```set``` and ```get``` of the object ```pdf2bib.config```\nFor example, we can scan the folder [examples](/examples) with reduced output verbosity, \n\n```python\n\u003e\u003e\u003e import pdf2bib\n\u003e\u003e\u003e pdf2bib.config.set('verbose',False)\n\u003e\u003e\u003e path = r'.\\examples'\n\u003e\u003e\u003e result = pdf2bib.pdf2bib(path)\n\u003e\u003e\u003e print(result[0]['metadata'])\n\u003e\u003e\u003e print('\\n')\n\u003e\u003e\u003e print(result[0]['bibtex'])\n{'title': \"An efficient numerical evaluation of the Green's function for the Helmholtz operator on periodic structures\", 'volume': '63', 'issue': '1', 'page': '222-235', 'publisher': 'Elsevier BV', 'url': 'http://dx.doi.org/10.1016/0021-9991(86)90093-8', 'doi': '10.1016/0021-9991(86)90093-8', 'journal': 'Journal of Computational Physics', 'year': 1986, 'month': 3, 'author': 'Kirk E Jordan and Gerard R Richter and Ping Sheng', 'ENTRYTYPE': 'article'}\n\n\n@article{jordan1986an,\n\ttitle = {An efficient numerical evaluation of the Green's function for the Helmholtz operator on periodic structures},\n\tvolume = {63},\n\tissue = {1},\n\tpage = {222-235},\n\tpublisher = {Elsevier BV},\n\turl = {http://dx.doi.org/10.1016/0021-9991(86)90093-8},\n\tdoi = {10.1016/0021-9991(86)90093-8},\n\tjournal = {Journal of Computational Physics},\n\tyear = {1986},\n\tmonth = {3},\n\tauthor = {Kirk E Jordan and Gerard R Richter and Ping Sheng}\n}\n```\n\nThe output of the function ```pdf2bib.pdf2bib``` is a list of dictionaries (or just a single dictionary if a single file was targeted). \nEach dictionary has the following keys\n\n```\nresult['identifier']        = DOI or other identifier (or None if nothing is found)\nresult['identifier_type']   = string specifying the type of identifier (e.g. 'doi' or 'arxiv')\nresult['path']              = path of the pdf file\nresult['method']            = method used by pdf2doi to find the identifier\nresult['validation_info']   = Raw BibTeX data.\nresult['metadata']          = Dictionary containing bibtex info\nresult['bibtex']            = A string containing a valid bibtex entry\n```\n\nThe element ```result['metadata']``` is a dictionary containing the most typical bibtex infos. \nThe specific keys contained in this dictionary, and their format, will depend on several factors, such as (1) if the paper was associated to a DOI or to an arxiv ID, \n(2) which method was used by ```pdf2doi``` to validate the paper identifier, and (3) which data is available for this paper in the relevant archive. \nWhen the paper is associate to a DOI, the ```result['metadata']``` dictionary will always contain at least the keys  ```'title', 'author', 'journal', 'volume', 'issue', 'page', 'publisher', 'url', 'doi', 'year', 'month'```, althought some of them might be empty. When the paper is associated to an arxiv ID, the ```result['metadata']``` dictionary will always contain the keys ```'title', 'author', 'ejournal', 'eprint', 'published', 'url', 'doi','arxiv_doi', 'year', 'month', 'day', 'ENTRYTYPE'```\n\n#### Manually associate the correct identifier to a file\nSimilarly to what described [above](#manually-associate-the-correct-identifier-to-a-file-from-command-line), it is possible to associate a (manually found) \nidentifier to a pdf file also from within python, by using the function ```pdf2doi.add_found_identifier_to_metadata```:\n\n```python\n\u003e\u003e\u003e import pdf2doi\n\u003e\u003e\u003e pdf2doi.add_found_identifier_to_metadata(path_to_pdf_file, identifier)\n``` \n\n## Installing the shortcuts in the right-click context menu of Windows\nThis functionality is only available on Windows (and so far it has been tested only on Windows 10). It adds additional commands to the context menu of Windows\nwhich appears when right-clicking on a pdf file or on a folder.\n\n\u003c!--\u003cimg src=\"docs/ContextMenu_pdf.png\" width=\"550\" /\u003e\u003cimg src=\"docs/ContextMenu_folder.png\" width=\"550\" /\u003e--\u003e\n\nThe  menu commands allow to copy BibTeX entry of a pdf file (or all pdf files contained in a folder) into the system clipboard.\n\n\u003c!--\u003cimg src=\"docs/ContextMenu_pdf.gif\" width=\"500\" /\u003e--\u003e\n\nTo install this functionality, first install ```pdf2bib``` via pip (as described above), then open a command prompt **with administrator rights** and run\n```\n$ pdf2bib  -install--right--click\n```\nTo remove it, simply run (again from a terminal with administrator rights)\n```\n$ pdf2bib  -uninstall--right--click\n```\nIf it is not possible to run this command from a terminal with administrator rights, the batch files\n[here](/right_click_menu_installation) can be alternatively used (see readme.MD file in the same folder for instructions), although it is still required to have \nadmnistrator rights.\n\nNOTE: when multiple pdf files are selected, and the right-click context menu commands are used, ```pdf2bib``` will be called separately for each file, and thus\nonly the BibTeX entry of the last file will be stored in the clipboard. In order to copy the info of multiple files it is necessary to save them in a folder and right-click on the folder.\n\n## Contributing\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\n## Acknowledgment\nI am thankful to my friend and colleague Yarden Mazor for leading the beta-testing efforts for this project.\n\n## Donating\nIf you find this library useful (or amazing!), please consider making donations on my behalf to organizations that advocate for and promote free dissemination of science, such as\n\n[arXiv](https://arxiv.org/about/donate)\n\n[Sci-Hub](https://sci-hub.se/donate)\n\n[Wikipedia](https://donate.wikimedia.org/)\n\n## License\n[MIT](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichelecotrufo%2Fpdf2bib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichelecotrufo%2Fpdf2bib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichelecotrufo%2Fpdf2bib/lists"}