Mathcenter Forum  

Go Back   Mathcenter Forum > คณิตศาสตร์ทั่วไป > ซอฟต์แวร์คณิตศาสตร์
สมัครสมาชิก คู่มือการใช้ รายชื่อสมาชิก ปฏิทิน ข้อความวันนี้

ตั้งหัวข้อใหม่ Reply
 
เครื่องมือของหัวข้อ ค้นหาในหัวข้อนี้
  #1  
Old 06 เมษายน 2010, 19:48
TOP's Avatar
TOP TOP ไม่อยู่ในระบบ
ผู้พิทักษ์กฎขั้นสูง
 
วันที่สมัครสมาชิก: 27 มีนาคม 2001
ข้อความ: 1,003
TOP is on a distinguished road
Smile วิธีการติดตั้ง TeXfonts สำหรับผู้ที่ใช้ iPhone

ระหว่างทานข้าวเย็นกับกรเมื่อสองวันก่อน ผมได้เกริ่นเอาไว้ว่า iPhone ก็น่าจะติดตั้ง TeXfonts ได้ เคยลองเล่นแบบไม่จริงจังเมื่อปลายปีที่ผ่านมากลับไม่ประสบความสำเร็จ เพราะติดอะไรหลายอย่าง มาวันนี้จึงได้ลองพยายามอีกครั้งหนึ่ง ก็พบว่ามันไม่ได้ยากอย่างที่คิด ติดตั้งฟอนต์เสร็จแล้วตัวสมการเมื่อดูผ่าน Safari สวยขึ้นมาก

หมายเหตุ: คำแนะนำนี้สำหรับผู้ที่มีความรู้และได้ลงลึกในรายละเอียดของ iPhone พอสมควรแล้วนะครับ จะไม่ขอกล่าวถึงรายละเอียดปลีกย่อยใดๆทั้งสิ้น
  1. คลายไฟล์ฟอนต์ที่ดาวน์โหลดมา
  2. คัดลอกไฟล์ฟอนต์(*.ttf) ไปไว้ที่ "/System/Library/Fonts/Cache"
  3. สำรองไฟล์ "/System/Library/Fonts/Cache/CGFontCache.plist" เก็บไว้ใน iPhone เพราะเดี๋ยวเราจะแก้ไขไฟล์นี้
  4. คัดลอกไฟล์ "CGFontCache.plist" มาเก็บไว้ที่คอมพิวเตอร์ของเรา
  5. เนื่องจากไฟล์นี้เป็น Binary เราจะแปลงเป็น XML เพื่อให้แก้ไขใน Notepad ได้ ทำได้โดยใช้บริการจาก Binary ? XML .plist converter โดยเลือก Upload ไฟล์ "CGFontCache.plist" แล้วกดปุ่ม "Convert" เราจะได้ไฟล์ "xml.plist"
  6. เปิดไฟล์ "xml.plist" ด้วย Notepad
    โครงสร้าง XML ของไฟล์นี้ประกอบด้วย 2 ส่วนคือ
    XML Code:
    1. <key>Names</key>
    2. <dict>...</dict>
    3. <key>TraitMappings</key>
    4. <dict>...</dict>
  7. <key>Names</key> ส่วนนี้เป็นตัวกำหนดชื่อฟอนต์กับไฟล์ฟอนต์ของมัน ให้เราเพิ่มโค้ดข้างล่างนี้เข้าไปในโครงสร้าง
    XML Code:
    1. <key>jsMath-cmbx10</key>
    2. <string>/System/Library/Fonts/Cache/jsMath-cmbx10.ttf</string>
    3. <key>jsMath-cmex10</key>
    4. <string>/System/Library/Fonts/Cache/jsMath-cmex10.ttf</string>
    5. <key>jsMath-cmmi10</key>
    6. <string>/System/Library/Fonts/Cache/jsMath-cmmi10.ttf</string>
    7. <key>jsMath-cmr10</key>
    8. <string>/System/Library/Fonts/Cache/jsMath-cmr10.ttf</string>
    9. <key>jsMath-cmsy10</key>
    10. <string>/System/Library/Fonts/Cache/jsMath-cmsy10.ttf</string>
    11. <key>jsMath-cmti10</key>
    12. <string>/System/Library/Fonts/Cache/jsMath-cmti10.ttf</string>
    13. <key>jsMath-msam10</key>
    14. <string>/System/Library/Fonts/Cache/jsMath-msam10.ttf</string>
    15. <key>jsMath-msbm10</key>
    16. <string>/System/Library/Fonts/Cache/jsMath-msbm10.ttf</string>
  8. <key>TraitMappings</key> ส่วนนี้ใช้จัดฟอนต์หลายตัวเข้าเป็นกลุ่มเดียวกัน เนื่องจากฟอนต์ของเราแต่ละตัวอยู่คนละกลุ่มจึงเพิ่มโค้ดข้างล่างนี้เข้าไปในโครงสร้าง
    XML Code:
    1. <key>jsMath-cmbx10</key>
    2. <dict>
    3.     <key>Plain</key>
    4.     <string>jsMath-cmbx10</string>
    5. </dict>
    6. <key>jsMath-cmex10</key>
    7. <dict>
    8.     <key>Plain</key>
    9.     <string>jsMath-cmex10</string>
    10. </dict>
    11. <key>jsMath-cmmi10</key>
    12. <dict>
    13.     <key>Plain</key>
    14.     <string>jsMath-cmmi10</string>
    15. </dict>
    16. <key>jsMath-cmr10</key>
    17. <dict>
    18.     <key>Plain</key>
    19.     <string>jsMath-cmr10</string>
    20. </dict>
    21. <key>jsMath-cmsy10</key>
    22. <dict>
    23.     <key>Plain</key>
    24.     <string>jsMath-cmsy10</string>
    25. </dict>
    26. <key>jsMath-cmti10</key>
    27. <dict>
    28.     <key>Plain</key>
    29.     <string>jsMath-cmti10</string>
    30. </dict>
    31. <key>jsMath-msam10</key>
    32. <dict>
    33.     <key>Plain</key>
    34.     <string>jsMath-msam10</string>
    35. </dict>
    36. <key>jsMath-msbm10</key>
    37. <dict>
    38.     <key>Plain</key>
    39.     <string>jsMath-msbm10</string>
    40. </dict>
  9. บันทึกไฟล์ "xml.plist" จากนั้นใช้บริการเว็บ Binary ? XML .plist converter อีกครั้งหนึ่ง โดยเลือก Upload ไฟล์ "xml.plist" แล้วกดปุ่ม "Convert" เราจะได้ไฟล์ "binary.plist"
  10. เปลี่ยนชื่อไฟล์ "binary.plist" เป็น "CGFontCache.plist"
  11. คัดลอกไฟล์ "CGFontCache.plist" ไปไว้ที่ "/System/Library/Fonts/Cache" เขียนทับไฟล์เดิมได้เลย
  12. Reboot iPhone หากไม่มีอะไรผิดพลาด iPhone สามารถกลับมาทำงานได้อีกครั้งหนึ่ง ก็เป็นอันจบขั้นตอนการติดตั้งฟอนต์
ตัวอย่าง XML ที่แก้ไขเสร็จแล้ว
XML Code:
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5.     <key>Names</key>
  6.     <dict>
  7.         <key>.Helvetica LT MM</key>
  8.         <string>/System/Library/Fonts/Cache/HelveLTMM.ps</string>
  9.         <key>.LastResort</key>
  10.         <string>/System/Library/Fonts/Cache/LastResort.ttf</string>
  11.         <key>.PhoneKeyCaps</key>
  12.         <string>/System/Library/Fonts/Cache/PhoneKeyCaps.ttf</string>
  13.         <key>.PhoneKeyCaps Regular</key>
  14.         <string>/System/Library/Fonts/Cache/PhoneKeyCaps.ttf</string>
  15.         <key>.Times LT MM</key>
  16.         <string>/System/Library/Fonts/Cache/TimesLTMM.ps</string>
  17.         <key>AmericanTypewriter</key>
  18.         <string>/System/Library/Fonts/Cache/AmericanTypewriter.ttf</string>
  19.         <key>AmericanTypewriter-Bold</key>
  20.         <string>/System/Library/Fonts/Cache/AmericanTypewriterBold.ttf</string>
  21.         <key>AppleGothic</key>
  22.         <string>/System/Library/Fonts/Cache/AppleGothicRegular.ttf</string>
  23.         <key>Arial</key>
  24.         <string>/System/Library/Fonts/Cache/Arial.ttf</string>
  25.         <key>Arial Bold</key>
  26.         <string>/System/Library/Fonts/Cache/ArialBold.ttf</string>
  27.         <key>Arial Bold Italic</key>
  28.         <string>/System/Library/Fonts/Cache/ArialBoldItalic.ttf</string>
  29.         <key>Arial Hebrew</key>
  30.         <string>/System/Library/Fonts/Cache/ArialHB.ttf</string>
  31.         <key>Arial Hebrew Bold</key>
  32.         <string>/System/Library/Fonts/Cache/ArialHBBold.ttf</string>
  33.         <key>Arial Italic</key>
  34.         <string>/System/Library/Fonts/Cache/ArialItalic.ttf</string>
  35.         <key>Arial Rounded MT Bold</key>
  36.         <string>/System/Library/Fonts/Cache/ArialRoundedMTBold.ttf</string>
  37.         <key>Arial-BoldItalicMT</key>
  38.         <string>/System/Library/Fonts/Cache/ArialBoldItalic.ttf</string>
  39.         <key>Arial-BoldMT</key>
  40.         <string>/System/Library/Fonts/Cache/ArialBold.ttf</string>
  41.         <key>Arial-ItalicMT</key>
  42.         <string>/System/Library/Fonts/Cache/ArialItalic.ttf</string>
  43.         <key>ArialHebrew</key>
  44.         <string>/System/Library/Fonts/Cache/ArialHB.ttf</string>
  45.         <key>ArialHebrew-Bold</key>
  46.         <string>/System/Library/Fonts/Cache/ArialHBBold.ttf</string>
  47.         <key>ArialMT</key>
  48.         <string>/System/Library/Fonts/Cache/Arial.ttf</string>
  49.         <key>ArialRoundedMTBold</key>
  50.         <string>/System/Library/Fonts/Cache/ArialRoundedMTBold.ttf</string>
  51.         <key>ArialUnicodeMS</key>
  52.         <string>/System/Library/Fonts/Cache/arialuni.ttf</string>
  53.         <key>Courier</key>
  54.         <string>/System/Library/Fonts/Cache/Courier.ttf</string>
  55.         <key>Courier New</key>
  56.         <string>/System/Library/Fonts/Cache/CourierNew.ttf</string>
  57.         <key>Courier New Bold</key>
  58.         <string>/System/Library/Fonts/Cache/CourierNewBold.ttf</string>
  59.         <key>Courier New Bold Italic</key>
  60.         <string>/System/Library/Fonts/Cache/CourierNewBoldItalic.ttf</string>
  61.         <key>Courier New Italic</key>
  62.         <string>/System/Library/Fonts/Cache/CourierNewItalic.ttf</string>
  63.         <key>Courier-Bold</key>
  64.         <string>/System/Library/Fonts/Cache/CourierBold.ttf</string>
  65.         <key>Courier-BoldOblique</key>
  66.         <string>/System/Library/Fonts/Cache/CourierBoldOblique.ttf</string>
  67.         <key>Courier-Oblique</key>
  68.         <string>/System/Library/Fonts/Cache/CourierOblique.ttf</string>
  69.         <key>CourierNewPS-BoldItalicMT</key>
  70.         <string>/System/Library/Fonts/Cache/CourierNewBoldItalic.ttf</string>
  71.         <key>CourierNewPS-BoldMT</key>
  72.         <string>/System/Library/Fonts/Cache/CourierNewBold.ttf</string>
  73.         <key>CourierNewPS-ItalicMT</key>
  74.         <string>/System/Library/Fonts/Cache/CourierNewItalic.ttf</string>
  75.         <key>CourierNewPSMT</key>
  76.         <string>/System/Library/Fonts/Cache/CourierNew.ttf</string>
  77.         <key>DBLCDTempBlack</key>
  78.         <string>/System/Library/Fonts/Cache/DB_LCD_Temp-Black.ttf</string>
  79.         <key>Geeza Pro</key>
  80.         <string>/System/Library/Fonts/Cache/GeezaPro.ttf</string>
  81.         <key>Geeza Pro Bold</key>
  82.         <string>/System/Library/Fonts/Cache/GeezaProBold.ttf</string>
  83.         <key>GeezaPro</key>
  84.         <string>/System/Library/Fonts/Cache/GeezaPro.ttf</string>
  85.         <key>GeezaPro-Bold</key>
  86.         <string>/System/Library/Fonts/Cache/GeezaProBold.ttf</string>
  87.         <key>Georgia</key>
  88.         <string>/System/Library/Fonts/Cache/Georgia.ttf</string>
  89.         <key>Georgia Bold</key>
  90.         <string>/System/Library/Fonts/Cache/GeorgiaBold.ttf</string>
  91.         <key>Georgia Bold Italic</key>
  92.         <string>/System/Library/Fonts/Cache/GeorgiaBoldItalic.ttf</string>
  93.         <key>Georgia Italic</key>
  94.         <string>/System/Library/Fonts/Cache/GeorgiaItalic.ttf</string>
  95.         <key>Georgia-Bold</key>
  96.         <string>/System/Library/Fonts/Cache/GeorgiaBold.ttf</string>
  97.         <key>Georgia-BoldItalic</key>
  98.         <string>/System/Library/Fonts/Cache/GeorgiaBoldItalic.ttf</string>
  99.         <key>Georgia-Italic</key>
  100.         <string>/System/Library/Fonts/Cache/GeorgiaItalic.ttf</string>
  101.         <key>HKGPW3UI</key>
  102.         <string>/System/Library/Fonts/Cache/HKGPW3UI.ttf</string>
  103.         <key>Heiti J Light</key>
  104.         <string>/System/Library/Fonts/Cache/STHeiti-Light.ttc</string>
  105.         <key>Heiti J Medium</key>
  106.         <string>/System/Library/Fonts/Cache/STHeiti-Medium.ttc</string>
  107.         <key>Heiti K Light</key>
  108.         <string>/System/Library/Fonts/Cache/STHeiti-Light.ttc</string>
  109.         <key>Heiti K Medium</key>
  110.         <string>/System/Library/Fonts/Cache/STHeiti-Medium.ttc</string>
  111.         <key>Heiti SC Light</key>
  112.         <string>/System/Library/Fonts/Cache/STHeiti-Light.ttc</string>
  113.         <key>Heiti SC Medium</key>
  114.         <string>/System/Library/Fonts/Cache/STHeiti-Medium.ttc</string>
  115.         <key>Heiti TC Light</key>
  116.         <string>/System/Library/Fonts/Cache/STHeiti-Light.ttc</string>
  117.         <key>Heiti TC Medium</key>
  118.         <string>/System/Library/Fonts/Cache/STHeiti-Medium.ttc</string>
  119.         <key>Helvetica</key>
  120.         <string>/System/Library/Fonts/Cache/Helvetica.ttf</string>
  121.         <key>Helvetica Bold</key>
  122.         <string>/System/Library/Fonts/Cache/HelveticaBold.ttf</string>
  123.         <key>Helvetica Bold Oblique</key>
  124.         <string>/System/Library/Fonts/Cache/HelveticaBoldOblique.ttf</string>
  125.         <key>Helvetica Oblique</key>
  126.         <string>/System/Library/Fonts/Cache/HelveticaOblique.ttf</string>
  127.         <key>Helvetica-Bold</key>
  128.         <string>/System/Library/Fonts/Cache/HelveticaBold.ttf</string>
  129.         <key>Helvetica-BoldOblique</key>
  130.         <string>/System/Library/Fonts/Cache/HelveticaBoldOblique.ttf</string>
  131.         <key>Helvetica-Oblique</key>
  132.         <string>/System/Library/Fonts/Cache/HelveticaOblique.ttf</string>
  133.         <key>HelveticaLTMM</key>
  134.         <string>/System/Library/Fonts/Cache/HelveLTMM.ps</string>
  135.         <key>HelveticaNeue</key>
  136.         <string>/System/Library/Fonts/Cache/HelveticaNeue.ttf</string>
  137.         <key>HelveticaNeue-Bold</key>
  138.         <string>/System/Library/Fonts/Cache/HelveticaNeueBold.ttf</string>
  139.         <key>HiraKakuProN-W3</key>
  140.         <string>/System/Library/Fonts/Cache/HiraginoKakuGothicProNW3.otf</string>
  141.         <key>HiraKakuProN-W6</key>
  142.         <string>/System/Library/Fonts/Cache/HiraginoKakuGothicProNW6.otf</string>
  143.         <key>Hiragino Kaku Gothic ProN W3</key>
  144.         <string>/System/Library/Fonts/Cache/HiraginoKakuGothicProNW3.otf</string>
  145.         <key>Hiragino Kaku Gothic ProN W6</key>
  146.         <string>/System/Library/Fonts/Cache/HiraginoKakuGothicProNW6.otf</string>
  147.         <key>jsMath-cmbx10</key>
  148.         <string>/System/Library/Fonts/Cache/jsMath-cmbx10.ttf</string>
  149.         <key>jsMath-cmex10</key>
  150.         <string>/System/Library/Fonts/Cache/jsMath-cmex10.ttf</string>
  151.         <key>jsMath-cmmi10</key>
  152.         <string>/System/Library/Fonts/Cache/jsMath-cmmi10.ttf</string>
  153.         <key>jsMath-cmr10</key>
  154.         <string>/System/Library/Fonts/Cache/jsMath-cmr10.ttf</string>
  155.         <key>jsMath-cmsy10</key>
  156.         <string>/System/Library/Fonts/Cache/jsMath-cmsy10.ttf</string>
  157.         <key>jsMath-cmti10</key>
  158.         <string>/System/Library/Fonts/Cache/jsMath-cmti10.ttf</string>
  159.         <key>jsMath-msam10</key>
  160.         <string>/System/Library/Fonts/Cache/jsMath-msam10.ttf</string>
  161.         <key>jsMath-msbm10</key>
  162.         <string>/System/Library/Fonts/Cache/jsMath-msbm10.ttf</string>
  163.         <key>LastResort</key>
  164.         <string>/System/Library/Fonts/Cache/LastResort.ttf</string>
  165.         <key>LockClock-Light</key>
  166.         <string>/System/Library/Fonts/Cache/LockClock.ttf</string>
  167.         <key>MarkerFelt-Thin</key>
  168.         <string>/System/Library/Fonts/Cache/MarkerFeltThin.ttf</string>
  169.         <key>MarkerFelt-Wide</key>
  170.         <string>/System/Library/Fonts/Cache/MarkerFeltWide.ttf</string>
  171.         <key>PhonepadTwo</key>
  172.         <string>/System/Library/Fonts/Cache/PhonepadTwo.ttf</string>
  173.         <key>STHeitiJ-Light</key>
  174.         <string>/System/Library/Fonts/Cache/STHeiti-Light.ttc</string>
  175.         <key>STHeitiJ-Medium</key>
  176.         <string>/System/Library/Fonts/Cache/STHeiti-Medium.ttc</string>
  177.         <key>STHeitiK-Light</key>
  178.         <string>/System/Library/Fonts/Cache/STHeiti-Light.ttc</string>
  179.         <key>STHeitiK-Medium</key>
  180.         <string>/System/Library/Fonts/Cache/STHeiti-Medium.ttc</string>
  181.         <key>STHeitiSC-Light</key>
  182.         <string>/System/Library/Fonts/Cache/STHeiti-Light.ttc</string>
  183.         <key>STHeitiSC-Medium</key>
  184.         <string>/System/Library/Fonts/Cache/STHeiti-Medium.ttc</string>
  185.         <key>STHeitiTC-Light</key>
  186.         <string>/System/Library/Fonts/Cache/STHeiti-Light.ttc</string>
  187.         <key>STHeitiTC-Medium</key>
  188.         <string>/System/Library/Fonts/Cache/STHeiti-Medium.ttc</string>
  189.         <key>Thonburi</key>
  190.         <string>/System/Library/Fonts/Cache/Thonburi.ttf</string>
  191.         <key>Thonburi Bold</key>
  192.         <string>/System/Library/Fonts/Cache/ThonburiBold.ttf</string>
  193.         <key>Thonburi-Bold</key>
  194.         <string>/System/Library/Fonts/Cache/ThonburiBold.ttf</string>
  195.         <key>Times New Roman</key>
  196.         <string>/System/Library/Fonts/Cache/TimesNewRoman.ttf</string>
  197.         <key>Times New Roman Bold</key>
  198.         <string>/System/Library/Fonts/Cache/TimesNewRomanBold.ttf</string>
  199.         <key>Times New Roman Bold Italic</key>
  200.         <string>/System/Library/Fonts/Cache/TimesNewRomanBoldItalic.ttf</string>
  201.         <key>Times New Roman Italic</key>
  202.         <string>/System/Library/Fonts/Cache/TimesNewRomanItalic.ttf</string>
  203.         <key>TimesLTMM</key>
  204.         <string>/System/Library/Fonts/Cache/TimesLTMM.ps</string>
  205.         <key>TimesNewRomanPS-BoldItalicMT</key>
  206.         <string>/System/Library/Fonts/Cache/TimesNewRomanBoldItalic.ttf</string>
  207.         <key>TimesNewRomanPS-BoldMT</key>
  208.         <string>/System/Library/Fonts/Cache/TimesNewRomanBold.ttf</string>
  209.         <key>TimesNewRomanPS-ItalicMT</key>
  210.         <string>/System/Library/Fonts/Cache/TimesNewRomanItalic.ttf</string>
  211.         <key>TimesNewRomanPSMT</key>
  212.         <string>/System/Library/Fonts/Cache/TimesNewRoman.ttf</string>
  213.         <key>Trebuchet MS</key>
  214.         <string>/System/Library/Fonts/Cache/TrebuchetMS.ttf</string>
  215.         <key>Trebuchet MS Bold</key>
  216.         <string>/System/Library/Fonts/Cache/TrebuchetMSBold.ttf</string>
  217.         <key>Trebuchet MS Bold Italic</key>
  218.         <string>/System/Library/Fonts/Cache/TrebuchetMSBoldItalic.ttf</string>
  219.         <key>Trebuchet MS Italic</key>
  220.         <string>/System/Library/Fonts/Cache/TrebuchetMSItalic.ttf</string>
  221.         <key>Trebuchet-BoldItalic</key>
  222.         <string>/System/Library/Fonts/Cache/TrebuchetMSBoldItalic.ttf</string>
  223.         <key>TrebuchetMS</key>
  224.         <string>/System/Library/Fonts/Cache/TrebuchetMS.ttf</string>
  225.         <key>TrebuchetMS-Bold</key>
  226.         <string>/System/Library/Fonts/Cache/TrebuchetMSBold.ttf</string>
  227.         <key>TrebuchetMS-Italic</key>
  228.         <string>/System/Library/Fonts/Cache/TrebuchetMSItalic.ttf</string>
  229.         <key>Verdana</key>
  230.         <string>/System/Library/Fonts/Cache/Verdana.ttf</string>
  231.         <key>Verdana Bold</key>
  232.         <string>/System/Library/Fonts/Cache/VerdanaBold.ttf</string>
  233.         <key>Verdana Bold Italic</key>
  234.         <string>/System/Library/Fonts/Cache/VerdanaBoldItalic.ttf</string>
  235.         <key>Verdana Italic</key>
  236.         <string>/System/Library/Fonts/Cache/VerdanaItalic.ttf</string>
  237.         <key>Verdana-Bold</key>
  238.         <string>/System/Library/Fonts/Cache/VerdanaBold.ttf</string>
  239.         <key>Verdana-BoldItalic</key>
  240.         <string>/System/Library/Fonts/Cache/VerdanaBoldItalic.ttf</string>
  241.         <key>Verdana-Italic</key>
  242.         <string>/System/Library/Fonts/Cache/VerdanaItalic.ttf</string>
  243.         <key>Zapfino</key>
  244.         <string>/System/Library/Fonts/Cache/Zapfino.ttf</string>
  245.     </dict>
  246.     <key>TraitMappings</key>
  247.     <dict>
  248.         <key>.HKGPW3UI</key>
  249.         <dict>
  250.             <key>Plain</key>
  251.             <string>HKGPW3UI</string>
  252.         </dict>
  253.         <key>.Helvetica LT MM</key>
  254.         <dict>
  255.             <key>Plain</key>
  256.             <string>HelveticaLTMM</string>
  257.         </dict>
  258.         <key>.LastResort</key>
  259.         <dict>
  260.             <key>Plain</key>
  261.             <string>LastResort</string>
  262.         </dict>
  263.         <key>.Lock Clock</key>
  264.         <dict>
  265.             <key>Plain</key>
  266.             <string>LockClock-Light</string>
  267.         </dict>
  268.         <key>.PhoneKeyCaps</key>
  269.         <dict>
  270.             <key>Plain</key>
  271.             <string>.PhoneKeyCaps</string>
  272.         </dict>
  273.         <key>.PhonepadTwo</key>
  274.         <dict>
  275.             <key>Plain</key>
  276.             <string>PhonepadTwo</string>
  277.         </dict>
  278.         <key>.Times LT MM</key>
  279.         <dict>
  280.             <key>Plain</key>
  281.             <string>TimesLTMM</string>
  282.         </dict>
  283.         <key>American Typewriter</key>
  284.         <dict>
  285.             <key>Bold</key>
  286.             <string>AmericanTypewriter-Bold</string>
  287.             <key>Plain</key>
  288.             <string>AmericanTypewriter</string>
  289.         </dict>
  290.         <key>AppleGothic</key>
  291.         <dict>
  292.             <key>Plain</key>
  293.             <string>AppleGothic</string>
  294.         </dict>
  295.         <key>Arial</key>
  296.         <dict>
  297.             <key>Bold</key>
  298.             <string>Arial-BoldMT</string>
  299.             <key>Bold-Italic</key>
  300.             <string>Arial-BoldItalicMT</string>
  301.             <key>Italic</key>
  302.             <string>Arial-ItalicMT</string>
  303.             <key>Plain</key>
  304.             <string>ArialMT</string>
  305.         </dict>
  306.         <key>Arial Hebrew</key>
  307.         <dict>
  308.             <key>Bold</key>
  309.             <string>ArialHebrew-Bold</string>
  310.             <key>Plain</key>
  311.             <string>ArialHebrew</string>
  312.         </dict>
  313.         <key>Arial Rounded MT Bold</key>
  314.         <dict>
  315.             <key>Bold</key>
  316.             <string>ArialRoundedMTBold</string>
  317.         </dict>
  318.         <key>Arial Unicode MS</key>
  319.         <dict>
  320.             <key>Plain</key>
  321.             <string>ArialUnicodeMS</string>
  322.         </dict>
  323.         <key>Courier</key>
  324.         <dict>
  325.             <key>Bold</key>
  326.             <string>Courier-Bold</string>
  327.             <key>Bold-Italic</key>
  328.             <string>Courier-BoldOblique</string>
  329.             <key>Italic</key>
  330.             <string>Courier-Oblique</string>
  331.             <key>Plain</key>
  332.             <string>Courier</string>
  333.         </dict>
  334.         <key>Courier New</key>
  335.         <dict>
  336.             <key>Bold</key>
  337.             <string>CourierNewPS-BoldMT</string>
  338.             <key>Bold-Italic</key>
  339.             <string>CourierNewPS-BoldItalicMT</string>
  340.             <key>Italic</key>
  341.             <string>CourierNewPS-ItalicMT</string>
  342.             <key>Plain</key>
  343.             <string>CourierNewPSMT</string>
  344.         </dict>
  345.         <key>DB LCD Temp</key>
  346.         <dict>
  347.             <key>Bold</key>
  348.             <string>DBLCDTempBlack</string>
  349.         </dict>
  350.         <key>Geeza Pro</key>
  351.         <dict>
  352.             <key>Bold</key>
  353.             <string>GeezaPro-Bold</string>
  354.             <key>Plain</key>
  355.             <string>GeezaPro</string>
  356.         </dict>
  357.         <key>Georgia</key>
  358.         <dict>
  359.             <key>Bold</key>
  360.             <string>Georgia-Bold</string>
  361.             <key>Bold-Italic</key>
  362.             <string>Georgia-BoldItalic</string>
  363.             <key>Italic</key>
  364.             <string>Georgia-Italic</string>
  365.             <key>Plain</key>
  366.             <string>Georgia</string>
  367.         </dict>
  368.         <key>Heiti J</key>
  369.         <dict>
  370.             <key>Bold</key>
  371.             <string>STHeitiJ-Medium</string>
  372.             <key>Plain</key>
  373.             <string>STHeitiJ-Light</string>
  374.         </dict>
  375.         <key>Heiti K</key>
  376.         <dict>
  377.             <key>Bold</key>
  378.             <string>STHeitiK-Medium</string>
  379.             <key>Plain</key>
  380.             <string>STHeitiK-Light</string>
  381.         </dict>
  382.         <key>Heiti SC</key>
  383.         <dict>
  384.             <key>Bold</key>
  385.             <string>STHeitiSC-Medium</string>
  386.             <key>Plain</key>
  387.             <string>STHeitiSC-Light</string>
  388.         </dict>
  389.         <key>Heiti TC</key>
  390.         <dict>
  391.             <key>Bold</key>
  392.             <string>STHeitiTC-Medium</string>
  393.             <key>Plain</key>
  394.             <string>STHeitiTC-Light</string>
  395.         </dict>
  396.         <key>Helvetica</key>
  397.         <dict>
  398.             <key>Bold</key>
  399.             <string>Helvetica-Bold</string>
  400.             <key>Bold-Italic</key>
  401.             <string>Helvetica-BoldOblique</string>
  402.             <key>Italic</key>
  403.             <string>Helvetica-Oblique</string>
  404.             <key>Plain</key>
  405.             <string>Helvetica</string>
  406.         </dict>
  407.         <key>Helvetica Neue</key>
  408.         <dict>
  409.             <key>Bold</key>
  410.             <string>HelveticaNeue-Bold</string>
  411.             <key>Plain</key>
  412.             <string>HelveticaNeue</string>
  413.         </dict>
  414.         <key>Hiragino Kaku Gothic ProN</key>
  415.         <dict>
  416.             <key>Bold</key>
  417.             <string>HiraKakuProN-W6</string>
  418.             <key>Plain</key>
  419.             <string>HiraKakuProN-W3</string>
  420.         </dict>
  421.         <key>jsMath-cmbx10</key>
  422.         <dict>
  423.             <key>Plain</key>
  424.             <string>jsMath-cmbx10</string>
  425.         </dict>
  426.         <key>jsMath-cmex10</key>
  427.         <dict>
  428.             <key>Plain</key>
  429.             <string>jsMath-cmex10</string>
  430.         </dict>
  431.         <key>jsMath-cmmi10</key>
  432.         <dict>
  433.             <key>Plain</key>
  434.             <string>jsMath-cmmi10</string>
  435.         </dict>
  436.         <key>jsMath-cmr10</key>
  437.         <dict>
  438.             <key>Plain</key>
  439.             <string>jsMath-cmr10</string>
  440.         </dict>
  441.         <key>jsMath-cmsy10</key>
  442.         <dict>
  443.             <key>Plain</key>
  444.             <string>jsMath-cmsy10</string>
  445.         </dict>
  446.         <key>jsMath-cmti10</key>
  447.         <dict>
  448.             <key>Plain</key>
  449.             <string>jsMath-cmti10</string>
  450.         </dict>
  451.         <key>jsMath-msam10</key>
  452.         <dict>
  453.             <key>Plain</key>
  454.             <string>jsMath-msam10</string>
  455.         </dict>
  456.         <key>jsMath-msbm10</key>
  457.         <dict>
  458.             <key>Plain</key>
  459.             <string>jsMath-msbm10</string>
  460.         </dict>
  461.         <key>Marker Felt</key>
  462.         <dict>
  463.             <key>Plain</key>
  464.             <string>MarkerFelt-Thin</string>
  465.         </dict>
  466.         <key>Thonburi</key>
  467.         <dict>
  468.             <key>Bold</key>
  469.             <string>Thonburi-Bold</string>
  470.             <key>Plain</key>
  471.             <string>Thonburi</string>
  472.         </dict>
  473.         <key>Times New Roman</key>
  474.         <dict>
  475.             <key>Bold</key>
  476.             <string>TimesNewRomanPS-BoldMT</string>
  477.             <key>Bold-Italic</key>
  478.             <string>TimesNewRomanPS-BoldItalicMT</string>
  479.             <key>Italic</key>
  480.             <string>TimesNewRomanPS-ItalicMT</string>
  481.             <key>Plain</key>
  482.             <string>TimesNewRomanPSMT</string>
  483.         </dict>
  484.         <key>Trebuchet MS</key>
  485.         <dict>
  486.             <key>Bold</key>
  487.             <string>TrebuchetMS-Bold</string>
  488.             <key>Bold-Italic</key>
  489.             <string>Trebuchet-BoldItalic</string>
  490.             <key>Italic</key>
  491.             <string>TrebuchetMS-Italic</string>
  492.             <key>Plain</key>
  493.             <string>TrebuchetMS</string>
  494.         </dict>
  495.         <key>Verdana</key>
  496.         <dict>
  497.             <key>Bold</key>
  498.             <string>Verdana-Bold</string>
  499.             <key>Bold-Italic</key>
  500.             <string>Verdana-BoldItalic</string>
  501.             <key>Italic</key>
  502.             <string>Verdana-Italic</string>
  503.             <key>Plain</key>
  504.             <string>Verdana</string>
  505.         </dict>
  506.         <key>Zapfino</key>
  507.         <dict>
  508.             <key>Plain</key>
  509.             <string>Zapfino</string>
  510.         </dict>
  511.     </dict>
  512. </dict>
  513. </plist>
__________________
The difference between school and life?
In school, you're taught a lesson and then given a test.
In life, you're given a test that teaches you a lesson.

05 พฤษภาคม 2013 18:56 : ข้อความนี้ถูกแก้ไขแล้ว 1 ครั้ง, ครั้งล่าสุดโดยคุณ TOP
ตอบพร้อมอ้างอิงข้อความนี้
  #2  
Old 04 พฤษภาคม 2010, 08:35
คนอยากเก่ง's Avatar
คนอยากเก่ง คนอยากเก่ง ไม่อยู่ในระบบ
กระบี่ประสานใจ
 
วันที่สมัครสมาชิก: 03 มีนาคม 2010
ข้อความ: 834
คนอยากเก่ง is on a distinguished road
Default

ต้อง jailbreak รึเปล่าครับ
ตอบพร้อมอ้างอิงข้อความนี้
ตั้งหัวข้อใหม่ Reply


หัวข้อคล้ายคลึงกัน
หัวข้อ ผู้ตั้งหัวข้อ ห้อง คำตอบ ข้อความล่าสุด
ใช้ Texfonts ใน word ได้ป่าวครับ ~king duk kong~ ปัญหาการใช้เว็บบอร์ด 6 21 สิงหาคม 2009 15:09


กฎการส่งข้อความ
คุณ ไม่สามารถ ตั้งหัวข้อใหม่ได้
คุณ ไม่สามารถ ตอบหัวข้อได้
คุณ ไม่สามารถ แนบไฟล์และเอกสารได้
คุณ ไม่สามารถ แก้ไขข้อความของคุณเองได้

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
ทางลัดสู่ห้อง


เวลาที่แสดงทั้งหมด เป็นเวลาที่ประเทศไทย (GMT +7) ขณะนี้เป็นเวลา 18:14


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Modified by Jetsada Karnpracha