-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathLaTeXWordCount.sublime-settings
34 lines (25 loc) · 1.18 KB
/
LaTeXWordCount.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// default LaTeX Word Count preferences file
// DO NOT EDIT THIS FILE DIRECTLY, it will get overwritten by package updates.
// instead, copy THE ENTIRE FILE* to your Packages/User folder and edit that
// copy (* see https://github.com/kevinstadler/SublimeLaTeXWordCount/issues/12)
{
// global settings (plaintext word count settings underlying all other syntaxes)
// whether numbers should be ignored in the word count
"ignore_numbers": true,
// customisable settings for word counts of LaTeX documents
"LaTeX": {
// regular expressions for markup commands. commands not contained in
// this 'whitelist' will be stripped from the text before the words
// are counted, as will formulas, any commands in the preamble (before
// \begin{document}), the abstract, and any text that is commented out
"markup_commands": ["text\\w+", "uppercase", "uline", "emph"],
// whether to exclude \section and \paragraph headers from the wordcount
"exclude_headers": true,
// whether to exclude the content of \footnote{}s
"exclude_footnotes": true,
// whether to exclude all appendix content
"exclude_appendices": true,
// whether to exclude the abstract
"exclude_abstract": true
}
}