home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Modes / latex Mode / latexUtilities.tcl < prev    next >
Encoding:
Text File  |  1998-04-05  |  5.2 KB  |  167 lines  |  [TEXT/ALFA]

  1. #############################################################################
  2. #############################################################################
  3. #
  4. # latexUtilities.tcl (sourced on demand)
  5. #
  6. #############################################################################
  7. #
  8. # Author:  Tom Scavo <trscavo@syr.edu>
  9. #
  10. #############################################################################
  11. #############################################################################
  12.  
  13. # Delete all unnecessary comments from the current document:
  14. proc deleteComments {} {
  15.     switch [askyesno "Warning!  This operation can not be undone.  \
  16.       Continue anyway?"] {
  17.         "yes" {}
  18.         "no" { return }
  19.     }
  20.     replaceString {}
  21.     eval select [search -f 1 -r 1 -i 1 -m 0 -- {^[ \t]*%.*\r} 0]
  22.     replaceAll
  23.     
  24.     replaceString {}
  25.     eval select [search -f 1 -r 1 -i 1 -m 0 -- {[ \t]+%.*} 0]
  26.     replaceAll
  27.     
  28.     replaceString {\1%}
  29.     eval select [search -f 1 -r 1 -i 1 -m 0 -- {([^\\](\\\\)*)%.*} 0]
  30.     replaceAll
  31. }
  32.  
  33. # Converts all straight quotes to their TeX equivalents.
  34. proc convertQuotes {} {
  35.     global searchNoisily
  36.     message "working…"
  37.     watchCursor
  38.     set messageString "selection"
  39.     if {[set start [getPos]] == [set end [selEnd]]} {
  40.         set messageString "document"
  41.         set start 0
  42.         set end [maxPos]
  43.     }
  44.     set text [getText $start $end]
  45.     # Convert all left double quotes:
  46.     set convert1 [regsub -all "\(\^\|\[\ \r\t\(\[\{\]\)\"" $text {\1``} text]
  47.     # Convert all right double quotes:
  48.     set convert2 [regsub -all "\(\[\^\\\\\]\)\"" $text {\1''} text]
  49.     # Convert all left single quotes:
  50.     set convert3 [regsub -all "\(\^\|\[\ \r\t\(\[\{\]\)\'" $text {\1`} text]
  51.     if {$convert1 || $convert2 || $convert3} {
  52.         replaceText $start $end $text
  53.         message "all quotes in $messageString converted"
  54.     } else {
  55.         if {$searchNoisily} {beep}
  56.         message "no quotes found in $messageString"
  57.     }
  58. }
  59.  
  60. # Convert all dollar signs to their LaTeX equivalents:
  61. proc convertDollarSigns {} {
  62.     global searchNoisily
  63.     if {[isSelection]} {
  64.         set messageString "selection"
  65.     } else {
  66.         set messageString "document"
  67.     }
  68.     set subs2 [convertDoubleDollarSigns]
  69.     if {$subs2 == -1} {
  70.         beep
  71.         alertnote "unmatched double dollar signs in $messageString"
  72.     } else {
  73.         set subs1 [convertSingleDollarSigns]
  74.         if {$subs1 == -1} {
  75.             beep
  76.             alertnote "unmatched single dollar sign in $messageString"
  77.         } elseif {$subs1 == 0 && $subs2 == 0} {
  78.             if {$searchNoisily} {beep}
  79.             message "no dollar signs found in $messageString"
  80.         } else {
  81.             message "$subs1 pairs of \$…\$ and $subs2 pairs of \$\$…\$\$ removed from $messageString"
  82.         }
  83.     }
  84. }
  85.  
  86. # Converts all $$...$$ pairs to \[...\] and returns the number of such 
  87. # pairs converted.  If the dollar signs are unbalanced, does nothing 
  88. # and returns -1.
  89. proc convertDoubleDollarSigns {} {
  90.     watchCursor
  91.     set messageString "selection"
  92.     if {[set start [getPos]] == [set end [selEnd]]} {
  93.         set messageString "document"
  94.         set start 0
  95.         set end [maxPos]
  96.     }
  97.     set text [getText $start $end]
  98.     set subs [regsub -all {(^|[^\\])\$\$([^$]*)\$\$} $text {\1\\[\2\\]} text]
  99.     if {[containsDoubleDollarSigns $text]} {return -1}
  100.     if {$subs} {
  101.         replaceText $start $end $text
  102.     }
  103.     return [expr $subs]
  104. }
  105.  
  106. # Returns true if the argument contains non-literal double dollar
  107. # signs, and false otherwise.
  108. proc containsDoubleDollarSigns {text} {
  109.     return [regexp {(^|[^\\])\$\$} $text]
  110. }
  111.  
  112. # Converts all $...$ pairs to \(...\), maintains the cursor position, 
  113. # and returns the number of such pairs converted.  If the dollar signs 
  114. # are unbalanced, does nothing and returns -1.
  115. proc convertSingleDollarSigns {} {
  116.     watchCursor
  117.     set subs1 0; set subs2 0; set subs3 0
  118.     set pos [getPos]; set pos2 $pos
  119.     if {[set start $pos] == [set end [selEnd]]} {
  120.         set isSelection 0
  121.         set start 0
  122.         set end [maxPos]
  123.         set text1 [getText $start $pos]
  124.         set subs1 [regsub -all {(^|[^\\])\$([^$]*)\$} $text1 {\1\\(\2\\)} text1]
  125.         # Is there a dollar sign left over?  If so, search backward for this
  126.         # dollar sign and prepare to do a substitution on the text to the right
  127.         # of this dollar sign.
  128.         if {[containsSingleDollarSign $text1]} {
  129.             set searchString {[^\\]\$}
  130.             set searchResult [search -s -n -f 0 -m 0 -i 1 -r 1 $searchString [expr $pos-1]]
  131.             set pos2 [lindex $searchResult 0]
  132.             set text1 [string range $text1 0 [expr $pos2 + (2 * $subs1)]]
  133.             set pos [expr $pos + 2]
  134.         }
  135.         set text2 [getText $pos2 $end]
  136.         set subs2 [regsub -all {(^|[^\\])\$([^$]*)\$} $text2 {\1\\(\2\\)} text2]
  137.         # Is there a dollar sign left over?  If so, it's unbalanced.
  138.         if {[containsSingleDollarSign $text2]} {return -1}
  139.         append text $text1 $text2
  140.     } else {
  141.         set isSelection 1
  142.         set text [getText $start $end]
  143.         set subs3 [regsub -all {(^|[^\\])\$([^$]*)\$} $text {\1\\(\2\\)} text]
  144.         # Is there a dollar sign left over?  If so, it's unbalanced.
  145.         if {[containsSingleDollarSign $text]} {return -1}
  146.     }
  147.     if {$subs1 || $subs2 || $subs3} {
  148.         replaceText $start $end $text
  149.         # If there is a selection, just put it back.  Otherwise, adjust the
  150.         # cursor position based on the number of substitutions.
  151.         if {$isSelection} {
  152.             set end [getPos]
  153.             select $start $end
  154.         } else {
  155.             goto [expr $pos + (2 * $subs1)]
  156.         }
  157.     }
  158.     return [expr $subs1 + $subs2 + $subs3]
  159. }
  160.  
  161. # Returns true if the argument contains a non-literal dollar sign,
  162. # and false otherwise.
  163. proc containsSingleDollarSign {text} {
  164.     return [regexp {(^|[^\\])\$} $text]
  165. }
  166.  
  167.