I have a:
1) Format .asd
2) Converter (.asd to .png).
Can I add my graphics filter that will insert graphics format .asd?
How?
Now I do TeX insert:
Code: Select all
\includeMyFormat {D:\name.asd} {D:\name.png}
D:\name.png - the output of the converter
Code: Select all
Definition:
\def\includeMyFormat#1#2{
\justdoit{C:/TEXMFLOCAL/bin/myconverter.exe #1 #2}
\includegraphics{#2}
}
\def\justdoit#1{\immediate\write18{#1}}
Code: Select all
\includegraphics{D:\name.asd}
Sorry for bad english!
Thanks in advance!