arxiv-latex-cleaner
arXiv LaTeX Cleaner: Easily clean the LaTeX code of your paper to submit to arXiv
File Explorer
- release-workflow.yml
- arxiv_latex_cleaner_test.py
- __init__.py
- __main__.py
- _version.py
- arxiv_latex_cleaner.py
- figure_not_included.pdf
- test1.pdf
- test2.pdf
- data_included.txt
- data_not_included.txt
- figure_included.tex
- figure_included.tikz
- figure_not_included.tex
- figure_not_included_2.tex
- im3_included.png
- im1.png
- im1_included.png
- im2_included.jpg
- im3_included.png
- im4_included.png
- im4_not_included.png
- im5_included.jpg
- im5_not_included.jpg
- im_not_included.png
- data_included.txt
- main.aux
- main.bbl
- main.bib
- main.tex
- test1.pdf
- test2.pdf
- data_included.txt
- figure_included.tex
- figure_included.tikz
- im3_included.jpg
- im1_included.jpg
- im2_included.jpg
- im3_included.jpg
- im4_included.jpg
- im5_included.jpg
- main.bbl
- main.tex
- test1.pdf
- test2.pdf
- data_included.txt
- figure_included.tex
- figure_included.tikz
- im3_included.png
- im1_included.png
- im2_included.jpg
- im3_included.png
- im4_included.png
- im5_included.jpg
- main.bbl
- main.tex
- tex.zip
- .gitignore
- __init__.py
- cleaner_config.yaml
- CONTRIBUTING.md
- LICENSE
- MANIFEST.in
- README.md
- requirements.txt
- setup.py
# Installation Guide
pythonSetup Steps
pip install arxiv-latex-cleaner
Install the arxiv-latex-cleaner package using pip.
arxiv_latex_cleaner /path/to/latex
Clean the LaTeX source folder to create an arXiv-ready submission folder.
Key Commands
pip install arxiv-latex-cleaner
Install the package from PyPI.
arxiv_latex_cleaner /path/to/latex --resize_images --im_size 500
Clean LaTeX source folder with optional configurations.
arxiv_latex_cleaner /path/to/latex --config cleaner_config.yaml
Clean LaTeX folder using a configuration file.
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
line
View Details ▼
line
Manage lines.
Accessed in configuration mode.
line vty 0 15
Configure lines from 0 to 15:
line
Read input:
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
done
View Details ▼
done
This shell keyword is used with `for`, `while`, `select`, and `until` to mark the end of a loop.
tldr for
View documentation for the `for` keyword:
tldr while
View documentation for the `while` keyword:
tldr select
View documentation for the `select` keyword:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
