This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{prospectus} | |
\usepackage[T1]{fontenc} % looks better than default font encoding | |
\usepackage{lmodern} % need a newer font to work with T1 font encoding | |
\usepackage{graphicx} % for including images | |
% standard document info | |
\title{My Prospectus Title} | |
\author{My Name} | |
\date{\today} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
#define TRUE 1 | |
#define FALSE 0 | |
static const char SYMBOL_OPEN[] = "<symbol name=\"HEADER-%dPOS\">\n"; | |
static const char SYMBOL_CLOSE[] = "</symbol>\n"; |
NewerOlder