From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nikolaj Schumacher Newsgroups: gmane.emacs.help Subject: Re: grammar check for latex in emacs Date: Thu, 19 Jul 2007 16:07:01 +0200 Message-ID: References: <1184758212.007739.324120@j4g2000prf.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1184854038 1277 80.91.229.12 (19 Jul 2007 14:07:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 19 Jul 2007 14:07:18 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jul 19 16:07:17 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IBWev-0001Gl-S8 for geh-help-gnu-emacs@m.gmane.org; Thu, 19 Jul 2007 16:07:14 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IBWeu-0001D8-SQ for geh-help-gnu-emacs@m.gmane.org; Thu, 19 Jul 2007 10:07:12 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IBWef-0001Ag-LV for help-gnu-emacs@gnu.org; Thu, 19 Jul 2007 10:06:57 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IBWee-000187-41 for help-gnu-emacs@gnu.org; Thu, 19 Jul 2007 10:06:57 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IBWee-00017v-0n for help-gnu-emacs@gnu.org; Thu, 19 Jul 2007 10:06:56 -0400 Original-Received: from fmmailgate01.web.de ([217.72.192.221]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IBWed-0008Bv-He for help-gnu-emacs@gnu.org; Thu, 19 Jul 2007 10:06:55 -0400 Original-Received: from smtp08.web.de (fmsmtp08.dlan.cinetic.de [172.20.5.216]) by fmmailgate01.web.de (Postfix) with ESMTP id BEBFE8FF2631 for ; Thu, 19 Jul 2007 16:06:53 +0200 (CEST) Original-Received: from [89.61.248.113] (helo=wednesday) by smtp08.web.de with asmtp (TLSv1:AES256-SHA:256) (WEB.DE 4.108 #197) id 1IBWeb-0002aW-00 for help-gnu-emacs@gnu.org; Thu, 19 Jul 2007 16:06:53 +0200 In-Reply-To: <1184758212.007739.324120@j4g2000prf.googlegroups.com> (rajeshthomas@gmail.com's message of "Wed\, 18 Jul 2007 04\:30\:12 -0700") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (darwin) X-Sender: n_schumacher@web.de X-Provags-ID: V01U2FsdGVkX1/pYnDsLHC3901vvtgB+lsFLfLHk01wBDnQGuXD vOjts44bScMlr+oFzAyOw/jdwdnIdwYE3/IwP6f5WaZw3tJ6+I 77kvIrL+Rpf/FcK5iqoQ== X-detected-kernel: Linux 2.4-2.6 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:45806 Archived-At: rajeshthomas@gmail.com wrote: > i need to correct grammar mistakes in my latex document. is there any > way to configure emacs to do this? i don't need a very sophisticated > grammar checker. just a simple one like changing to uppercase the > first letter of a word after a sentence, repeated words, etc. Do you want checking or changing? An idea for sort-of checking: To highlight those small letters, you could add this: (highlight-regexp "\\.[\n\r\t ]+[[:lower:]]") to your mode hook. regards, Nikolaj Schumacher