Project

texqc

0.0
No release in over a year
Run it after you compile your LaTeX document
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 0.2.6
~> 1.3.17
= 12.3.3
= 0.61.0

Runtime

~> 0.3
~> 0.2
~> 4.8.2
 Project Readme

Gem Version License

This tool helps you make sure your LaTeX document compiles without issues.

First, you install it:

$ gem install texqc

Then, you just run it after the LaTeX document is compiled:

$ latexmk -pdf article
$ texqc article

If any warnings were reported by LaTeX, you will get a short list of them and the exit code will be non-zero (very convenient for your CI/CD scripts).

To make configuration easier, you can create .texqc file next to your .tex file and place all your command line configuration options over there, each one on its own line. You can also have a global configuration file at ~/.texqc, which will be read first.

How to contribute

Read these guidelines. Make sure your build is green before you contribute your pull request. You will need to have Ruby 2.3+ and Bundler installed. Then:

$ bundle update
$ bundle exec rake

If it's clean and you don't see any error messages, submit your pull request.