Homepage | Project |
textcoding.el assists users in doing qualitative text analysis by providing a mechanism to attach structured notes to a text. These structured notes are grouped in categories -- i.e. text codes --, which can be visualised by the use of different highlighting colours and text marks. These notes are saved as file properties independently from the text. These notes can be summarised or exported (e.g. as tab separated file).
Caveat: textcoding.el is still experimental, i.e. it hasn't been tested in a significant real world project yet. See also CompEmacsFileproperties.
Put (require 'textcoding) (textcoding-install)
into your user init
file. `textcoding-install' installs all the required packages and all
hooks necessary. It also loads `textcoding-autoloades-file'.
When coding a text, you should first define a project -- otherwise a global project definition will be used. This is done by the `textcoding-project-define' macro. An example use would be:
(textcoding-project-define textcoding-test-project "~/.xemacs/textcoding-testproj.el" (textcoding-proj-add-categories '("A" "B" "C")) (textcoding-proj-add-faces '(("^A" blue) ("^B" green))) (textcoding-proj-add-templates '((:project "Class" "Note") ("A" "Colour" "Note") ("B" "Height" "Note")))))
Put something like this into a file of its own -- say "~/Etc/TC/test.el". The project data of this example is saved in "~/.xemacs/textcoding-testproj.el". If you add new categories during coding, these will be recorded in this data file.
When evaluating or compiling this macro an autoload definition will be saved in `textcoding-autoloades-file'. After putting something like (following this example) "mode:textcoding-test-project" into your file's local variable section, the project definition in "~/Etc/TC/test.el" will be automatically loaded when opening the text file.
Textcoded regions are implemented as remarks -- see there for an explanation of how to edit, move, or delete them.
Requirements: tellib, remarks, file properties
0.3: textcoding.el.gz
(c) 2003 Thomas Link (last updated Mar 20 2003) | home | top |