https://github.com/weihaox/arxiv-daily-tools
This script converts arxiv papers into a certain markdown format.
https://github.com/weihaox/arxiv-daily-tools
arxiv-daily arxiv-papers
Last synced: about 1 month ago
JSON representation
This script converts arxiv papers into a certain markdown format.
- Host: GitHub
- URL: https://github.com/weihaox/arxiv-daily-tools
- Owner: weihaox
- Created: 2023-03-23T17:29:41.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-19T16:46:24.000Z (about 2 years ago)
- Last Synced: 2025-04-04T08:21:58.604Z (about 2 months ago)
- Topics: arxiv-daily, arxiv-papers
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 15
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# arxiv_daily_tools
This script converts arxiv papers (given id or title) into a certain markdown [format](https://github.com/weihaox/awesome-neural-rendering). I utilize this script to categorize daily arxiv papers based on my research interests ([awesome-neural-rendering](https://github.com/weihaox/awesome-neural-rendering), [awesome-3D-aware-synthesis](https://github.com/weihaox/awesome-3D-aware-synthesis), [awesome-gan-inversion](https://github.com/weihaox/awesome-gan-inversion), [awesome-image-translation](https://github.com/weihaox/awesome-image-translation)).
## usage
If you find some interesting papers on arxiv today and want to add them to your paper list, please add their arxiv ids to `paper_list.txt` and run the following command.
```Shell
python arxiv_daily_tools.py
```If you have a papers.md (like [this](https://github.com/weihaox/arxiv_daily_tools/blob/main/papers.md)) and would like to update some information, please use the following command.
```Shell
python update_info.py
```
If you want to convert the markdown file to BibTeX (.bib) or BibLaTeX (.bbl) references, please use the following command.```Shell
python markdown_to_bib.py papers.md ./ --mode 1 # mode 1 is for BibTeX, and mode 1 is for BibLaTeX
```
## relatedThanks to [yzy1996](https://github.com/yzy1996) for sharing the [code](https://github.com/yzy1996/Python-Code/commit/9d76bd75cc4d6f3980b5c6ef8a20cedd92c0fa1b).