在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):nspring/style-check开源软件地址(OpenSource Url):https://github.com/nspring/style-check开源编程语言(OpenSource Language):Ruby 79.9%开源软件介绍(OpenSource Introduction):style-check.rbThe code described in this README parses latex-formatted text in search of forbidden phrases and prints error messages formatted as if from a compiler. Why does this code exist?This code is a weapon against collaborators who would dilute your writing with ambiguous or verbose prose. It was designed to ensure that collaborative papers appear in a consistent style: mine. I think of all activities as coding. My presentations use python scripts, not powerpoint. My writing and research posters use latex and emacs, not word or publisher. When I write code, I try to be creative and sloppy, relying on tools to identify most of my mistakes. (For example, gcc issues warnings, splint can verify some memory processes, and custom scripts can identify simple portability problems.) When writing text, I had no such tools. The style checker is one such tool. When I notice a mistake that can be identified by a regular expression, I add a forbidden expression to the style checker's ruleset. Then, when I build my latex-formatted paper, I run the style checker to seek out such phrases. It has saved me from submitting gramatically-sloppy last-minute edits. Like the warnings printed by a compiler, errors from the style checker should not be taken literally. Use your own judgement to correct sentences: make them shorter, more specific, and more varied. I cannot advise you to rely on this tool in the way I do; my approach to writing is not necessarily a good one for anyone. How does it work?The style checker is a ruby script that seeks out files in directories /etc/style-check.d or ~/.style-check.d, or files named ~/.style-censor or ./style-censor. Each file is a list of expressions in one of four types, annotated with a justification. See the existing files for examples. Type 1: SyntaxSyntax expressions are matched exactly. They are case-sensitive. Any regular expression will do. As a hint, "\b" will match some non-word character, like a space or newline. [ ], % syntax whitespace before comma seems wrong. ''[\.,] % syntax end quotes go outside punctuation like . and , [ ]-[ ] % syntax a hyphen surrounded by space should probably be an emdash '---' Type 2: CapitalizeCapitalize expressions match whole words, and are case-sensitive. Such expressions are designed to help maintain uniformity of capitalization of product and project names, like PlanetLab, Scriptroute, CoDeeN, iPod, etc. They are transparently wrapped with "\b"s to ensure that only whole words are matched. Planetlab % capitalize PlanetLab planetlab % capitalize PlanetLab ccdf % capitalize cisco % capitalize the company name internet % capitalize unless talking about an internet other than the Internet ttl % capitalize Type 3: PhrasePhrases match longer phrases such as "the foreseeable future" or "at the end of the day". As with capitalize expressions, they are transparently wrapped with "\b"s, but are not case sensitive. Some phrases that should be forbidden include double words. [^r][^c][^h] impact % phrase "effect", "result", though nsf likes "research impact" absolutely essential % phrase essential few in number % phrase few the the % phrase apparent double word. (quite|more|very|most) unique % phrase unique is. a large number of % phrase you mean "many" the way in which % phrase should be "how" or "" live in a vacuum % phrase a tired metaphor that makes me want to vomit. Type 4: SpellingSpelling expressions are internally handled just like phrases. These are useful for common misspellings or typo's. Perhaps you habitually misspell lose as loose and would prefer to have a checker complain. I habitually misspell measurment, secrurity, and experiements. experiements % spelling measurment % spelling secrurity % spelling taht % spelling teh % spelling privledge % spelling "privilege" I misspell it every way possible. privlege % spelling "privilege" I misspell it every way possible. priviledge % spelling "privilege" I misspell it every way possible. queueing % spelling I'd love to spell it this way, but spellchecker whines. Type -1: Ignored CommandsIgnore the parameter to this command. If only spell checkers were this cool. The standard ignored commands are \begin, \end, \url, \cite, \ref, \label, and a few others. You can extend this in ./censor-dict with a personal dictionary that might include, for example \todo or \hostname. The internal implementation of ignored commands is to "replace" them with ~ (the non-breaking space character) before the rest of the rules are checked, so it is possible that other rules may need to take this into account. todo % ignoredcommand texttt % ignoredcommand Built-in checkingIn addition to configurable rules, the style checker also seeks out common errors within the LaTeX source itself:
Comments using \begin{comment} and \end{comment} from comment.sty are skipped. Math mode between unescaped $'s is skipped. For more detail, read the ruby code. It's shorter than this file. How do I use it?From the style-check-(version) directory, run sudo make install to install as the superuser. As an alternative, make user-install will put the ruleset in your home-directory, but putting the style-check.rb script in your path is up to you. To run the script, style-check.rb *.tex Or, if you'd like a little justification with your scolding, style-check.rb -v *.tex LimitationsThis is not a proof-reader, editor, spelling checker, or grammar checker. It can catch only some simple, common, frustrating mistakes. It is not a substitute for reading what I've listed below. It is intended only for LaTeX files. This code will not teach you to use "that" and "which" properly. It will not teach you to hyphenate. It may be used for evil. You may think my rules are stupid. There are many bugs in the code; it is not guaranteed that the style checker will find all forbidden phrases. It may become confused by nested environments. AttitudeDon't ask me to add a feature. Send me a patch. Don't complain that it's written in Ruby. My language kicks your language's ass. Don't complain about the ruleset. Invent a mechanism to override ones you don't care for. Further ReadingThis section is split into two categories -- entertainment for reading that is light and fun and should help you think about writing better, and reference that may help answer harder questions. EntertainmentThe Elements of Style, by Strunk and White http://www.bartleby.com/141/ Woe is I: The Grammarphobe's Guide to Better English in Plain English, by Patricia T. O'Conner. Lake Superior State University Banished Words List http://www.lssu.edu/banished/ Usage in The American Heritage Dictionary http://www.bartleby.com/61/7.html alt.usage.english FAQ http://alt-usage-english.org/fast_faq.shtml How To Write A Dissertation, by Doug Comer http://www.cs.purdue.edu/homes/dec/essay.dissertation.html Plain English Campaign http://www.plainenglish.co.uk/ Thesis Errors http://core.ecu.edu/psyc/wuenschk/therr.htm How to Avoid Colloquial (Informal) Writing http://www.wikihow.com/Avoid-Colloquial-%28Informal%29-Writing Henning Schulzrinne's Notes http://www.cs.columbia.edu/~hgs/etc/writing-style.html Reading that takes work (and reference)Rules for Writers, by Diana Hacker. The New Oxford Guide to Writing, by Thomas S. Kane. Line by Line: How to Edit Your Own Writing, by Claire Cook. Related CodeMichael Haardt wrote GNU diction, which is similar in that it finds and complains about bad phrases, but different in that it also notes questionable phrases (such as any use of "affect") and does not expect to check LaTeX source. Style-check focuses on forbidden phrases and common typographic errors in LaTeX code. To installgem install style-check http://www.cs.umd.edu/~nspring/software/style-check-current.tar.gz ThanksKurt Partridge for encouraging me to release this thing. Vibha Sazawal for reminding me often that there is more to writing than style. Rich Wolski for introducing me to Strunk and White, the gateway drug. Jacob Martin reported the first bug, packaged style-check for gentoo, and contributed a ruleset based on Day and Gastel, "How to Write and Publish a Scientific Paper". Indika Meedeniya noticed a few more bugs and suggested compatibility with gedit. Rudolf Mühlbauer suggested:
Vinícius Vielmo Cogo provided an html output scheme. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论