Program t1accent -- adds a new accents into Type1 fonts (pfb) ============================================================= (C) 1998 Petr Olsak April 1998 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA The output from the program (the modified fonts) are licensed dependent on the original input fonts, of course. The contents of the package: --------------------------- README ... the Czech variant of this file README.eng ... this file COPYING ... full text of the GNU General Public License t1accent.doc ... the Czech documantation of the program t1accent.eng ... the English documentation of the program t1accent.c ... the program source file t1accent.exe ... the executable for DOS Makefile ... the UNIX installation script *.tab ... config files for the program. They are used for making the pfb variant of CSfonts *.enc ... encoding files for CSfonts The Installation ---------------- 1. On UNIX The compilation needs the gcc properly intalled. make su make install make runs a compilation of the program t1accent into executable and make install install only one file (executable t1accent) into /usr/local/bin. 2. On DOS. Copy t1accent.exe into directory with another *.exe programs. About program ------------- See the file t1accent.doc or t1accent.eng. Primary sources --------------- http://petr.olsak.net/ftp/olsak/t1accent/ see also http://math.feld.cvut.cz/olsak/ The t1accent uses the output format from t1utils package by I. Lee Hetherington. The pfb is created by t1asm from t1utils package. You can found this package on: CTAN/fonts/utilities/t1utils/ It is strongly recommended to change the line 244 in t1asm.c source before compiling of t1asm program from: for (i = 0; i < 7; i++) { to: for (i = 0; i < 8; i++) { The specification of Adobe Type1 fonts describes that 8 lines of zeros are needed at the end of pfb/pfa file. The 7 lines are not sufficient and some PostScript RIPs may by crash. The similar programs -------------------- See ftp://bombay.oriental.cam.ac.uk/pub/john/software/programs/accfonts/ for programs by John D. Smith. They solve the similar task as t1accent using perl.