mirror of
https://github.com/arranstewart/magic.git
synced 2025-07-01 07:08:34 +00:00
54 lines
1.6 KiB
C
54 lines
1.6 KiB
C
/* Texmats.c
|
|
*
|
|
* This is a post-processing program for MaGIC.
|
|
* It reads ugly MaGIC output from stdin and prints the
|
|
* matrices to stdout in TeX format.
|
|
*
|
|
* See RM.h for more information.
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "RM.h"
|
|
|
|
|
|
int main()
|
|
{
|
|
selectmats( True, TeX );
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************
|
|
* *
|
|
* MaGIC 2.1 *
|
|
* *
|
|
* (C) 1993 Australian National University *
|
|
* *
|
|
* All rights reserved *
|
|
* *
|
|
* The information in this software is subject to change without *
|
|
* notice and should not be construed as a commitment by the *
|
|
* Australian National University. The Australian National Uni- *
|
|
* versity makes no representations about the suitability of *
|
|
* this software for any purpose. It is supplied "as is" without *
|
|
* express or implied warranty. If the software is modified in *
|
|
* a manner creating derivative copyright rights, appropriate *
|
|
* legends may be placed on the derivative work in addition to *
|
|
* that set forth above. *
|
|
* *
|
|
* Permission to use, copy, modify and distribute this software *
|
|
* and its documentation for any purpose and without fee is *
|
|
* hereby granted, provided that both the above copyright notice *
|
|
* and this permission notice appear in all copies and sup- *
|
|
* porting documentation, and that the name of the Australian *
|
|
* National University not be used in advertising or publicity *
|
|
* pertaining to distribution of the software without specific, *
|
|
* written prior permission. *
|
|
* *
|
|
****************************************************************/
|