Changes between Version 51 and Version 52 of Astronomical Tools/Software


Ignore:
Timestamp:
04/06/06 16:50:36 (20 years ago)
Author:
cdelarcuz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Astronomical Tools/Software

    v51 v52  
    138138The PGPLOT Graphics Subroutine Library is a Fortran- or C-callable, device-independent graphics package for making simple scientific graphs. It is intended for making graphical images of publication quality with minimum effort on the part of the user. For most applications, the program can be device-independent, and the output can be directed to the appropriate device at run time.
    139139
    140 === ImageMagick ===
    141 
    142 [http://www.imagemagick.org/script/index.php ImageMagick®], is a free software suite to create, edit, and compose bitmap images. It can read, convert and write images in a large variety of formats. Images can be cropped, colors can be changed, various effects can be applied, images can be rotated and combined, and text, lines, polygons, ellipses and Bézier curves can be added to images and stretched and rotated.
    143 version
    144 
    145 = Display/documents =
    146 
    147 === LaTeX ===
    148 
    149 === Supermongo (sm) ===
    150 [http://www.astro.princeton.edu/~rhl/sm/ Supermongo (sm)] is a flexible graphics package.
    151 An on-line guide and sm tutorial are available.
    152 SM's great strength is that you can define macros to perform common tasks.
    153 SM can also emulate regular Mongo - to do this issue the
    154 command `compatible'.
    155 Examples of sm macros can be found in /data/system/user_guide/sm/.
    156 The version installed is sm 2_4_26
    157 
    158 To run sm just type:
    159 
    160         sm
    161         : quit
    162 
    163 To get help type:
    164 
    165         sm -help
    166 
    167 === ghostview ===
    168 === xv ===
    169 === xfig ===
    170 === acroread ===
    171 === OpenOffice ===
    172 
    173 == E-mail and Browsers ==
    174 === Mozilla ===
    175 === Firefox ===
    176 === Thunderbird ===
    177 === Plugins for Browsers ===
    178 ==== Flash ====
    179 ==== Sun JRE 1.5 ====
    180 === Pine ===
    181 === Mutt ===
    182 
    183 == EDITORS ==
    184 
    185 === emacs ===
    186 To start Emacs,
    187 just type emacs &. For an introduction to Emacs type C-h t inside Emacs to
    188 enter the Emacs tutorial. The AucTeX information on the IoA Local Page describes
    189 a powerful interface to writing LaTeX in Emacs.
    190 
    191 You can configure Emacs to your hearts content by editing your own
    192 version of the Emacs configuration file ~/.emacs (a default .emacs file
    193 can be copied from /public/Default_Scripts/.emacs, which contains the
    194 following lines and some additional features that may be useful) e.g. for
    195 editing text of a specific type that emacs knows about, such as fortran,
    196 tex, c or idl script code, you should switch to the appropriate major mode
    197 so that coloured text can be used to highlight different sections of text,
    198 add the following lines to this file:
    199 
    200 (setq font-lock-face-attributes
    201       '((font-lock-comment-face "SeaGreen" nil nil t nil nil)
    202         (font-lock-variable-name-face "blue")
    203         (font-lock-string-face "red")
    204         (font-lock-function-name-face "Magenta")
    205         (font-lock-keyword-face "blue")
    206         (font-lock-type-face "MediumOrchid")
    207         (font-lock-reference-face "orchid")))
    208 (setq emacs-lisp-mode-hook 'turn-on-font-lock)
    209 (setq latex-mode-hook 'turn-on-font-lock)
    210 (setq tex-mode-hook 'turn-on-font-lock)
    211 (setq fortran-mode-hook 'turn-on-font-lock)
    212 (setq info-mode-hook 'turn-on-font-lock)
    213 (setq dired-mode-hook 'turn-on-font-lock)
    214 
    215 For IDL scripts (.pro files) you can similar obtain coloured text and recognise IDL syntax by adding the lines:
    216 
    217 (autoload 'idlwave-mode "idlwave" "IDLWAVE Mode" t)
    218 (autoload 'idlwave-shell "idlw-shell" "IDLWAVE Shell" t)
    219 (setq auto-mode-alist 
    220 (cons '("\\.pro\\'" . idlwave-mode) auto-mode-alist))
    221 (setq idlwave-help-directory "/usr/local/etc")
    222 (add-hook 'idlwave-mode-hook 'turn-on-font-lock)
    223 
    224 
    225  
    226 === vi vi(m) ===
    227 vi stands for VIsual editor, and it is the standard UNIX editor.
    228 As such it is widely used. The advantage of vi is that whatever linux/Unix
    229 system you use, there will be a version of vi there, it is also
    230 compact and quick, much quicker to start up than for instance emacs or nedit.
    231 The downside is that it is difficult to learn, more so than emacs.
    232 If you are not going to use it, you only need to know that you get
    233 out of it by typing :q or :q! to avoid saving the file.
    234  
    235140== Language Compilers ==
    236141