README.md
# TeXLogParser [](https://badge.fury.io/rb/tex_log_parser)Line length[](http://www.rubydoc.info/gems/tex_log_parser/) **Ë™**Line length
Trailing spaces[](https://codeclimate.com/github/reitzig/texlogparser/maintainability) Line length[](https://codeclimate.com/github/reitzig/texlogparser/test_coverage) **˙**[](https://circleci.com/gh/reitzig/workflows/texlogparser/tree/master)[](http://inch-ci.org/github/reitzig/texlogparser) This small Ruby gem eases many pains around digesting logs from (La)TeX engines.Used as a command-line program or library, it converts (La)TeX logs into human-or machine-readable forms. _Disclaimer:_ Due to the nature of (La)TeX logs, parsing is inherently heuristic. ## Installation On any system with working Ruby (≥ 2.3), installation is as simple as this: ```bash[sudo] gem install tex_log_parser``` Trailing spacesThe usual options and, later, update mechanisms of Rubygems apply; please refer to their documentation for details. ## Usage Line lengthThere are two ways to parse logs: with the command-line program and via the underlying Ruby API. ### Command-line Interface Line lengthBy default, `texlogparser` reads from stdin and writes to stdout. That is, you can use it like so: ```bashpdflatex -interaction=nonstopmode example.tex | texlogparserFenced code blocks should be surrounded by blank lines```Trailing spaces Trailing spaces
Line lengthThis adds so little runtime overhead that there are few reasons _not_ to use it. Trailing spacesNote that the original log file will still be written to `example.log`, so no information is lost. **Important:** Without `nonstopmode`, `pdflatex` et al. stop on errors to interactwith the user; `texlogparser` is not prepared to play the middle man for that andwill block. You can also read from and/or write to files: ```bashtexlogparser -i example.log # From file, to stdouttexlogparser -i example.log -o example.simple.log # From and to filecat example.log | texlogparser -o example.simple.log # From stdin, to file``` If you want to use the output programmatically, you may want to add option `-f json`.It does just what it sounds like. ### Ruby API Trailing spacesThe interface is rather narrow; your main entry point is class [TexLogParser](http://www.rubydoc.info/gems/tex_log_parser/TexLogParser).Trailing spacesCalling `parse` on it will yield a list of Trailing spaces [Message](http://www.rubydoc.info/gems/tex_log_parser/LogParser/Message) objects. Here is a minimal yet complete example: ```rubyrequire 'tex_log_parser' log = File.readlines('example.log')parser = TexLogParser.new(log)puts parser.parse[0]``` ### Recommendations Here are some tips on how to generate logs that do not trip up parsing unnecessarily: Consider starting bulleted lists at the beginning of the line
Line length * Use `_latex` option `-file-line-error` to get higher accuracy regarding source files and lines.Line length * [Increase the maximum line length](https://tex.stackexchange.com/a/52994/3213) as much as possibleTrailing spaces to improve overall efficacy. Bad linebreaks are [bad](https://github.com/reitzig/texlogparser/search?utf8=%E2%9C%93&q=BROKEN_BY_LINEBREAKS&type=). * Avoid parentheses and whitespace in file paths.Trailing spaces * The shell output of the initial run of `pdflatex` et al. on a new file can Trailing spaces contain output of subprograms, and be complicated in other ways as well. Trailing spaces It is therefore more robust to use the log file as written to disk, and/or Trailing spaces the output resp. log file produced by a subsequent run. Trailing spaces (Don't worry, real errors will stick around!) ## Contributing Trailing spacesFor bug reports and feature requests, the usual rules apply: search for [existing issues](https://github.com/reitzig/texlogparser/issues);join the discussion or [create a new one](https://github.com/reitzig/texlogparser/issues/new);be specific and nice; expect nothing.Trailing spaces That aside, there are two groups of experts whose help would be much appreciated:Trailing spaces(La)TeX gourmets and Ruby developers. ### TeXians Line lengthPlease report any logs that get parsed wrong, be it because whole messages are not found,or because not all details are correctly extracted. Reports that provide the following information will be the most useful: 1. Full failing log of a minimal example (ideally with source document).Ordered list item prefix 2. The engine(s) you use, e.g. `pdflatex`, `xelatex`, or `lualatex`.Ordered list item prefix 3. Expected number of error, warning, and info messages (the latter optional).Ordered list item prefix 4. Expected message withUnordered list indentation * log line numbers (where the message starts and ends), * level of the message (error, warning, or info), and * which source file (and lines) it references.Ordered list item prefix 5. _Advanced_: In case of wrong source files, run `texlogparser -d` on the logTrailing spaces and note on which lines it changes file scopes in wrong ways. Trailing spacesIf you _also_ know a little Ruby, please consider translating those data into [a (failing) test](https://github.com/reitzig/texlogparser/blob/master/test/test_texlogparser.rb)and open a pull request. Some preemptive notes:Lists should be surrounded by blank lines * Issues around messages below warning level have low priority. * Problems caused by inopportune linebreaks are _probably_ out of scope.Trailing spaces Line length**Bonus:** Convince as many package maintainers to use the same standardized, robust way of writing to the log.Trailing spaces Headers should be surrounded by blank lines### Rubyists Trailing spaces
Line lengthAny feedback about the code quality and usefulness of the documentation would be very appreciated. Particular areas of interest include: Consider starting bulleted lists at the beginning of the line * Is the API designed in useful ways? * Does the documentation cover all your questions? * Is the Gem structured properly? * What can be improved to encourage code contributions? * Does the CLI script have problems on any platform?Trailing spaces Headers should be surrounded by blank lines### Contributors Consider starting bulleted lists at the beginning of the line * [egreg](https://tex.stackexchange.com/users/4427/egreg) and [David Carlisle](https://tex.stackexchange.com/users/1090/david-carlisle)Trailing spaces provided helpful test cases and insight in LaTeX Stack Exchange chat.