\fontfam[Termes] \margins/1 a4 (3,3,3,3)cm \typosize[11/13.5] \verbchar` \def\title{\OpTeX count} \def\desc{Python script for counting words in \OpTeX/ documents} \def\version{Version 1.1} \def\author{Richard Hartmann} \def\maketitle {\vbox to 9\baselineskip{ \parindent=0pt \leftskip=0pt plus 1fill \rightskip=0pt plus 1fill {\parskip=14pt \typoscale[2000/]\bf \title \par} {\parskip=19pt \typoscale[1200/]\desc \par} {\parskip=10pt \version \par} {\parskip=10pt \it \author \par} {\parskip=8pt \the\day.\,\the\month.\,\the\year \par} }} \maketitle \sec Functionality and Usage \OpTeX count is a basic python utility that analyzes \OpTeX source code. It is inspired by already existing \TeX count for \LaTeX. The functionality is really lightweight and basic. It counts words and other elements of \OpTeX/ document and sorts them out into individual categories. These categories are inspired by \TeX count. \begitems \typosize[11.5/16] \style N \bf * Regular text words count * Header words count * Caption words count * Header count * Figures/Tables count * Inline formulae * Displayed math formulae \enditems Regular text words are words that occur in the main text. Header words are introduced using these particular keywords: {\Blue `\tit`}, {\Blue `\chap`}, {\Blue `\sec`} and {\Blue `\secc`}. Caption words take into account captions of tables and figures, i.e., {\Blue `\caption/t`} and {\Blue `\caption/f`}, footnotes({\Blue `\fnote`} or {\Blue `\fnotetext`}) and marginal notes({\Blue `\mnote`}). Header count is the number of all headers in our document. Figures/Tables count counts all tables and figures which occur in the document. Inline formulae are introduced using {\Blue `$`\dots`$`} and displayed formulae are introduced using {\Blue `$$`\dots`$$`}. If there is a verbatim text in some category, its words are counted too. Alongside above mentioned statistics, all individual sections are printed separately with particular word counts. To get this utility running, you need to install it using basic bash script. Use command {\Blue `sudo ./install.sh`}. Installation requires `python3` and `zip` utility running. Then user can run this utility by command: \begtt optexcount [-h] [-v] [-s SET_VERBCHAR] [--version] filename \endtt Use {\Blue `-h`} or {\Blue `--help`} specifier for the help message. User can also use two optional specifiers: {\Blue `-v`}~/~{\Blue `--verbose`} and {\Blue -s SET_VERBCHAR}~/~{\Blue --set-verbchar SET_VERBCHAR}. When the utility is ran in verbose mode, it prints the source code on the screen with colored words, so user can easily see, what is considered as text word, header word, caption word or keyword. Character {\Blue `SET_VERBCHAR`} sets implicit verbatim inline character. This can be useful when the specific verbatim character is used in the file but not explicitely set in the file. The situation may occur for example when user wants to count words in file, that is read by different main file. The verbatim character is set in the main file, but not in the file we want to analyze. In case you don't want to install this software you can run python script {\Blue `src/optexcount.py`} with {\Blue `python3`} command explicitly. \sec A Brief Implementation Description \OpTeX count uses regular expressions to separate individual words, to identify keywords, brackets, math formulae etc. These preprocessed words are sequentially loaded into counter that decides how to treat with the word. If some specific keyword occurs, that is not known by this utility, it is skipped. Problem may occur, if an unknown keyword has got some arguments, the utility could count these arguments as individual words. Therefore, most common keywords with arguments are listed in `src/keywords.py`, so the utility can load successfully these arguments. If there is some important keyword missing, feel free to modify this file, to add this keyword\dots In case of some keyword, that is important for the utility to identify, for example {\Blue `\sec`} or {\Blue `\fnote`}, special handler routine is ran, to manage this particular keyword. The place, from which we process the word also determines the category of the word, in what color should be this word highlighted in verbose mode etc. \sec Utility Limitations The results are pretty precise when the most basic \OpTeX/ constructions are used. As It has been already mentioned above, it is really basic and lightweight utility. When user uses some more advanced \TeX/ constructions, problems may occur, and the counts may be imprecise. It doesn't take into account macro expansion, self defined rules etc\dots When using this utility, a valid \OpTeX/ source code should be passed. If the file contains some errors(for example unterminated inline verbatim), utility terminates the process and won't provide much information about the problem. This utility only works with one particular file so it doesn't count included files as well. Beside above mentioned limitations of this utility, it could be very useful for the analysis of basic \OpTeX/ documents(such as the exemplary document {\Blue `examples/example_01.tex`}). \bye