LaTeX Symbols Selector 0.1.6 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News LaTeX Symbols Selector 0.1.6 (Default branch)
# 1  
Old 04-13-2008
LaTeX Symbols Selector 0.1.6 (Default branch)

Image LSS is a symbol browser to help create LaTeX documents with many math symbols. All symbols are grouped into categories, and users can copy a symbol name to a system-wide clipboard (or insert it directly to the first running copy of gVIM) by selecting a symbol icon from the list. License: GNU General Public License (GPL) Changes:
Symbols' names can be drag and dropped. A Polish translation has been added.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
syms(5) 							File Formats Manual							   syms(5)

Name
       syms - MIPS symbol table

Syntax
       #include < sym.h>
       #include < symconst.h>

Description
       Unlike the COFF symbol table, the MIPS symbol table consists of many tables unbundling information.  The symbol table should be viewed as a
       network-style database designed for space and access efficiency.

       The following structures or tables appear in the MIPS symbol table:

       TABLE			CONTENTS

       Symbolic header		Sizes and locations of all other tables

       File descriptors 	Per file locations for other tables

       Procedure descriptors
				Frame information and location of procedure info

       Local symbols		Local type, local variable, and scoping info

       Local strings		String space for local symbols

       Line numbers		Compacted by encoding, contains a line per instruction

       Relative file descriptors
				Indirection for interfile symbol access

       Optimization symbols
				To be defined

       Auxiliary symbols	Variable data type information for each local symbol

       External symbols 	Loader symbols (global text and data)

       External strings 	String space for external symbols

       Dense numbers		Index pairs (file, symbol) for compiler use

       External and local symbols contain the standard concept of a symbol as follows:
       struct
       {
	    long iss; /* index into string space */
	    long value;    /* address, size, etc., depends on sc and st */
	    unsigned  st: 6;	/* symbol type (e.g. local, param, etc.) */
	    unsigned  sc: 5;	/* storage class (e.g. text, bss, etc.) */
	    unsigned  reserved: 1;
	    unsigned  index;	/* index to symbol or auxiliary tables */
       };

See Also
       ldfcn(5)

								       RISC								   syms(5)