Difference between revisions of "Cont-sys.tex"

From Wiki
Jump to navigation Jump to search
(added some more hints)
m (pre -> texcode)
Line 7: Line 7:
 
There are some settings on [[Fonts]], [[Metapost]]/[[MetaFun]]; most options are documented in the file itself.
 
There are some settings on [[Fonts]], [[Metapost]]/[[MetaFun]]; most options are documented in the file itself.
  
<pre>
+
<texcode>
 
% set default encoding
 
% set default encoding
 
\setupencoding [\s!default=ec]
 
\setupencoding [\s!default=ec]
Line 30: Line 30:
 
\useMETAFUNformattrue
 
\useMETAFUNformattrue
 
\protectbufferstrue
 
\protectbufferstrue
</pre>
+
</texcode>
  
 
For me, typescripts only work if I uncomment <cmd>autoloadmapfilestrue</cmd> and <cmd>resetmapfiles</cmd> --[[User:Hraban|Hraban]] 2004-08-24
 
For me, typescripts only work if I uncomment <cmd>autoloadmapfilestrue</cmd> and <cmd>resetmapfiles</cmd> --[[User:Hraban|Hraban]] 2004-08-24

Revision as of 15:59, 18 January 2005

< Installation hints

This file lives in (mytexmf/)tex/user/, you must copy it first time from cont-sys.rme.

Here you can set up all your options that you want to be valid for all projects.

There are some settings on Fonts, Metapost/MetaFun; most options are documented in the file itself.

% set default encoding
\setupencoding [\s!default=ec]

% set default TeX processor (driver)
\setupoutput[pdftex]

% load font maps for pdfTeX automatically
% (makes sense if you use a lot of different fonts)
\autoloadmapfilestrue
\resetmapfiles
%\usetypescript [map] [default,\defaultencoding]

% runtime processing of MetaPost
% 
% for the next two, you need write18 enabled
%
\runMPgraphicstrue
\runMPTEXgraphicstrue

% use MetaFun
\useMETAFUNformattrue
\protectbufferstrue

For me, typescripts only work if I uncomment \autoloadmapfilestrue and \resetmapfiles --Hraban 2004-08-24