একটি এমপি ফাইল কি?
An MP file is a vector image file generated by MetaPost programming language to create pictures. Vector images created using MP file format are saved as EPS (Encapsulated PostScript) files. In addition, MetaPost comes distributed with TeX and Metafont frameworks and MP files can be generated from within the TEX and LTX files used by these applications. MP files contain drawing statements and mathematical algorithmic drawing for rendering the output EPS file. PDFTex engine can use the created EPS to generate PDF files directly.
এমপি ফাইল ফরম্যাট
এমপি ফাইলগুলি বাইনারি ফাইল হিসাবে ডিস্কে সংরক্ষিত হয় এবং আউটপুট ভেক্টর ইমেজ ফাইল ফর্ম্যাটে রপ্তানি করার সময় ইপিএস আউটপুট তৈরি করে। MetaPost ব্যবহার করে তৈরি অঙ্কনগুলি LaTex-এর সাহায্যে তৈরি প্রযুক্তিগত নথি এবং জার্নাল প্রকাশনার মধ্যে বিন্যাসিত আকারে অন্তর্ভুক্ত করা হয়।
মেটাপোস্ট এমপি ফাইলের উদাহরণ
নিম্নলিখিত একটি উদাহরণ, Berkeley Eductational Wiki থেকে উল্লেখ করা হয়েছে, যেটিতে একটি তীর রয়েছে এবং তীরের মাঝখানের ঠিক উপরে A অক্ষর রয়েছে৷
outputtemplate:="%j%c.mps";
beginfig(1);
z1=(0,0);
z2=(10mm,10mm);
drawarrow(z1--z2);
label.ulft(btex $A$ etex, .5[z1,z2]);
endfig;
bye