Using TeX's cmex10.pfb and other odd-coded fonts in Java

I can use Font.createFont on COmputer Modern (maths) fonts like cmmi and cmex postscript type1 files and get a font. But as best I can discern many of the glyphs therein do not get found by the mapping via Unicode and I have been having trouble finding how to access them. Eg cmex10 reports it has 130 glyphs in but only 20 unicode codepoints admit to being populated and most of those do not display anything for me. Can anybody tell me how to select a physical font like that and access the glyphs by the raw unmapped codes that TeX gave them? Sample code would be nice but any pointers to what to do would perhaps help. Thanks! Arthur

Further investigation: Java up to 1.3 or 1.4 had font property config files but those seen no longer present and do not cover fonts loaded from resources well.
If I use the t1disasm disassembler on the type1 font and edit the postscript to change the names of some of the postscript procedures used to draw fonts to A, B, C etc I can then see those glyphs. So Java seems to be using the names of the items in the font encoding vector to try to map chars onto Unicode and just discarding glyphs it can not cope with ????
So maybe I will be able to cope by making a trick version of cmex that names all its glyphs as if they are things in the Unicode space that Java knows about! But that seems pretty gross to me and a better solution that gave me raw access to the fonts by uninterpreted character code would be nicer.

Similar Messages

  • HT3546 How do I set up my air port extreme to do port forwarding? Running 10.7.4 I have a IP camera on my local wireless net work that I want to use from my iPhone 4s and other computers.

    How do I set up my air port extreme to do port forwarding? Running 10.7.4 I have a IP camera on my local wireless net work that I want to use from my iPhone 4s and other computers.

    In most cable systems, the router you have will plug into your modem and just work automatically. A NAT (Network Address Translation) router takes your external IP and hands out LAN (Local Area Network) based IPs. All of the devices you are working with right now should handle the change automatically unless you've changed from the default automatic configuration.
    The problem with your wireless end of this is that the iPhone is not yet 802.11n, only 802.11g. Because that router is not dual band, all of your wifi devices will be forced to slow down to 802.11g speeds. This won't matter much for each device that's connecting to the internet, as your bottleneck is still going to be there. Where you will see slowdowns is device to device connections, like transferring data between the devices.

  • I purchase iphone from saudi arabia (mobily telecom), can i use this mobile in pakistan and other custires. and how i know this phone is carrier unlocked..

    i purchase iphone from saudi arabia (mobily telecom), can i use this mobile in pakistan and other custires. and how i know this phone is carrier unlocked..

    It will be locked to mobily telecom, and according to Apple's list of supported carriers and their features (http://support.apple.com/kb/HT1937) they do not offer unlocking.  Since only the carrier it is locked to can unlock it, you have bought a useless phone.

  • Use one account for apps and other for itunes match

    Hello everybody
    My question today is quite simple. I use one account for apps and tv shows, but inwant to use a different itunes account for purchasing itunes match. How can I use them both on my devices? Will it be asking for my user-pass each time i play a song? What other thing should i consider?
    Thank you in advance

    I would strongly recommend you not do this.  You will regret it.
    I have played with this issue a lot.  You have to remain signed into match in order for it to show up on your phone. If you sign out to purchase an app or redownload one from your appstore id you use then match will be removed from your phone and when you go into your music app the icloud will not be there.  You then have to go sign back out of the store id you used for your app purchase and then sign back into match and everything will have to go though the download to your device process again.  This really is not what you want to do.
    Sign up to match with the apple id that you know you will use the most or has the most purchased items and use that for all purchases, i.e. books, apps, movies, and music.  You don't want to go though the other process.
    Plus apple will start not letting you sign into match because you signed out and back in, in to short a period of time.
    all store purchases on an iphone are linked to the store id.  if you sign out of your match id on the appstore and sign into another account to purchase an app then itunes match will sign out in the music app.  You can't have two store id's signed into your iphone at the same time.  They are all linked together.

  • Can I have two Time Capsules in the same network, use one as Time Machine and other to expand network?

    I need to purchase a divice to expand my Wi-fi network. I was looking at the AirPort Extreme, but a friend has a brand new Time Capsule for sale. So, for the same price of the AirPort Extreme, I´m getting the Time Capsule.
    I already own one and using it as Time Machine and wireless router. If I decide to purchase another TC would it have any conflict with the one that I already have?
    Is it possible to use one as Time Machine and wireless router and the other to just expand network and storage only (not as Time Machine)?

    If I decide to purchase another TC would it have any conflict with the one that I already have?
    No
    Is it possible to use one as Time Machine and wireless router and the other to just expand network and storage only (not as Time Machine)?
    Yes. The important thing to remember is that the "extending" Time Capsule must be located where it can receive a strong wireless signal from your "main" Time Capsule.

  • Which conversion tools used in Sales, Shipment, Invoce, and other.....

    Guys,
    I know in general that best conversion tool for Customer Master is LSMW. What about the rest of the data to be converted to SAP such as Material Master, Sales, Shipment, Invoice and other historical data? Which tools do we use for these? Do we use LSMW again?
    Thank you.

    HI,
    Yes LSMW can be used and you can also use CATTS to migrate data from Legacy system to SAP.
    Regards
    Milan
    <b>Please reward with Points</b>

  • A useful guide to broadband, DLM, and other stuff

    Dear all,
    Here is some information I stumbled over whilst in my quest to understand broadband and why mine is broken. A little old but it will explain some concepts such as dynamic line management (DLM), line stabilisation, errors, and other such things. I hope it will help clarify the truths and the legends and allow people to understand the explanations offered by the technical and not so technical staff!
    Good luck one and all.
    http://www.thinkbroadband.com/files/broadband-max-myths-and-legends.pdf
    thedoctor.

    Nice info thank you
    If any post helps tick the star box on the left
    Just cause Im paranoid dont mean they are not out to get me

  • How can i input some text in bold and other in normal font in h:messages

    Hi
    I have a message which comes from properties file.I need half of the text in bold and the other half in normal font.

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test extends JFrame {
        public Test() {
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         Container content = getContentPane();
         JEditorPane jep = new JEditorPane("text/html",
                  "Joe: <font color=red>R u <b>There</b>?</Font><BR>"+
                  "Mary: <font color=green>Keep ur shorts on...</Font>");
         content.add(new JScrollPane(jep), BorderLayout.CENTER);
         setSize(200,200);
         show();
        public static void main(String[] args) { new Test(); }
    }

  • 404 and other odd results from 11.2 docs in tahiti

    Just an observation, searching on things like pga at tahiti.oracle.com then clicking on 11.2 results gives 404 errors. Clicking on the 11.2 docs then searching gives not found errors. No problems with other versions. I optimistically take this as a sign that someone is updating the doc set. But it would seem odd to update at 11:00AM on a workday.

    user13312943 wrote:
    Hi,
    I would like to test downgrade process through the scripts (@catdwgrd.sql). Oracle documentation http://docs.oracle.com/cd/E18283_01/server.112/e17222/downgrade.htm
    says
    "2.If you previously installed a recent version of the time zone file and used the DBMS_DST PL/SQL package to upgrade TIMESTAMP WITH TIME ZONE data to that version, then you must install the same version of the time zone file in the release to which you are downgrading. For example, the latest time zone files that are supplied with Oracle Database 11g Release 2 (11.2) are version 14 as of this printing. If after the database upgrade, you had used DBMS_DST to upgrade the TIMESTAMP WITH TIME ZONE data to version 14, then install the version 14 time zone file in the release to which you are downgrading. This ensures that your TIMESTAMP WITH TIME ZONE data is not logically corrupted during retrieval. To find which version your database is using, query V$TIMEZONE_FILE"
    1) In my case, I used DBMS_DST and now the version if the time zone file is 14. If I have to go back to 10.2.0.4, Should i copy the files to $ORACLE_HOME/ORACORE/ZONEINFO (where $ORACLE_HOME is 10.2.0.4)?
    No - you should not copy files from the 11gR2 HOME to the 10.2.0.4 HOME - instead apply patch 9742718 to the 10.2.0.4 HOME (which corresponds to v14 of the DST patch)
    Updated DST transitions and new Time Zones in Oracle Time Zone File patches [ID 412160.1]
    2) If my Oracle 10.2.0.4 is shared with multiple instances, will i introduce risk for other databases running on the same oracle home when I copy the files?
    You will need to follow steps in 9742718 for all of the databases running out of the 10.2.0.4 HOME
    3) What other steps should I do other than copying the version 14 files into this directory?
    See above
    Thank You
    SarayuHTH
    Srini

  • Unable to restart and other oddness.

    I'm currently on my 3rd install of Leopard on this laptop hoping that something would change but It hasn't.
    Once I'm logged in on my account I'm fine until I try and restart or shutdown. I'll look like I'm going to do either but it goes to the time machine background only with the spinner going, but it just stays there forever. I'm forced to do a hard reset. I've found that if I log out and then tell it to shutdown I'm fine. A bit annoying but as long as I remember I don't have to hold the power button down.
    Does anyone know why this may be happening ?
    currently I have growlhelperapp , quicksilver, airport disk agent, and synergyd running on login. hopefully that helps.
    2nd odd thing is I've had crashes from the wireless driver at least once per install so far that has required me holding the power down and I've sent a bug report to apple.
    3rd odd thing has only happened once but I'm posting it in case It happens again. Terminal.app said 'PAM Error (line 396): System error' whenever I or any other user on the system tried to use it. A reboot fixed that.
    I'm kind of wondering if being 5th in line at the KOP Apple store was such a good idea. Performance of bf2142 tonight will be the determining factor.
    Message was edited by: Meanderis

    I think I figured out the restart problem finally. I noticed that .mac sync was swirling on restart attempt. So I undid my mac account and trashed the file it left on my desktop. It restarted properly twice. I then reenabled .mac sync and tried it again after It created the iDisk and was fully synced. I was able to reboot properly twice after that. I'll post here again if I encounter this issue again or figure out anything on the other 2 issues.

  • Dual monitor use audio output for movie and other for MBP

    is it possible im watching a movie on one and wated to answer factime call or watch youtube on my mbp and just screamed out my tv speakers.....i want fual monitoring but separate audio any help?

    Other alternatives include
    I know on mackbooks I've seen firewire used as an input for a Weiss Dac if you're into two channel audio.  Do any reiceivers take firewire as an input for hometheater?  Has anyone tested Firewire outputs on their W series?  I'm told that firewire is sometimes preferable to USB, I'm not sure why this would be, can USB support passthrough of DTS encoded signals?
    In the case that firewire works and you Do not have a firewire source, maybe something like this would be of value  It converts firewire to digital coaxial s/pdif and allows passthrough of DTS and AC3.
    http://www.m-audio.com/images/global/manuals/FireWire-Audiophile_Manual.pdf
    As I'm into audio the critical thing here (and what you're paying for when you purchase blue-ray, is maintaining the digital information from the disk in an unconverted form.  You want a direct bit pass through, and you want as little jitter introduced to the signal as possible.  You most certainly don't want the sound card getting in the way, Digtital to Analog converting and then reverse packaging it up and putting it out over the soundcard digital out.  My problem is I'm not familiar enough with computer audio to know how exactly the sounds is transmitted from your blue ray drive to the digital interface you've chosen.
    Anyone know why USB digital out would not be a prefered method?
    Moderator note; comment removed which contravened forum rules

  • Need advise about using NAS drive for TM and other storage

    I have 2 macs. One is running Snow Leopard and has a FW 400 drive connected directly to it for TM backups. I have another older mac (G5 PPC) running Tiger and I plan to update to Leopard so I can also do TM backups for it.
    So, I'm thinking of getting the following NAS enclosure, adding a 2TB drive to it, so I can do TM backups on the old mac (and maybe switch the other mac to use it too).
    The questions I have are:
    1. is it fast enough to do it over the network, compared to the direct FW 400 connection?
    2. Can I partition the new NAS 2TB in half and move the TM backup folder over there and then tell my new mac that it needs to do the TM backup there?
    That's all I have for now. Hope someone can help.
    Thank You!

    That does not appear to be compatible with Time Machine.
    See the pink box in #2 of [Time Machine - Frequently Asked Questions|http://web.me.com/pondini/Time_Machine/FAQ.html] (or use the link in *User Tips* at the top of this forum).

  • Using EJBs in Web Dynpro and others model tecnology patterns

    I'm having difficults in order to implement the business logic in Java.
    I did a simple application and I put all business rules inside de controller in the web dynpro. Everything is ok to users, but I know that this isn't indicate.
    I tried to encapsulate de business rules and dao in a session bea, but I'm not sucessfull. I'd like to receive advices/tutorial about model, I found some treads in the forum, but almost all links in the sdn are browke. I was thinking in using hibernate and spring, but I don't know with it's a good choive to sap world.

    Hi,
    try these tutorials:
    (ejb) https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1f5f3366-0401-0010-d6b0-e85a49e93a5c
    (hibernate) https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/14f55178-0801-0010-0bac-974ed17e51d3
    Regards
    Ladislav
    PS. Consider rewarding helpful answers

  • System Preferences can't set date and time and other odd behaviour

    I have a 2008 Macbook Air, which is beginning to show signs of age, but now appears to have taken on a terminal problem.  I can't set the date and time in the system preferences, even when connected to the internet - the pane just comes up as faded out and I am unable to do anything. The problem started after I accidentally allowed the battery to run down without having shut down the computer and it automatically assumed a date of 1 Jan 2001. I am unable to perform any updates on the machine until the issue is resolved, according to software update.
    Other strange things that have happened are that the trackpad no longer responds to the 'tap to click' function or 'two finger' click. In system preferences, I cannot edit energy saver, network (advanced) or account settings - attempting to do so brings up more faded panels or an error message after failure to load.
    Has anyone seen similiar behaviour on their mac or have suggestions as how I might resolve the problem?
    Thanks!

    If this is recent, what has changed since the last time D&T worked correctly?
    I see that your Question has languished for some period of time without response. You have posted your issue in Using Apple Support Communities whose topic is 'How to use this forum software's interface, features and/or how to find what you wish'. It is a relatively low traffic and inappropriate forum for your problem. I will ask our Hosts to move it to " Using iPhone " where it may get a more rapid response from your fellow users.
    ÇÇÇ

  • I download ios8 I can't use my song for ringtone and other ringtone it is not loud and I miss call

    I Download ISO 8 and I can't use the song for my ringtone , but it vibrate and I can't hear the phone rings . Other ringtone it is not loUd

    There is a difference between the passcode and the sync key.<br />
    The passcode allows to setup all sync parameters with a single code on other devices.<br />
    To enter the sync key (and user name and password) you need to click on "I don't have the device with me" at the bottom of the "Add a Device" window (Click Connect).
    * https://support.mozilla.com/kb/where-can-i-find-my-firefox-sync-key
    * https://support.mozilla.com/kb/find-code-to-add-device-to-firefox-sync

Maybe you are looking for

  • How to load a plugin from another plugin?

    Hi, I'm trying to load a plugin, which is not located in the plugin-paths of After Effects from another plugin. It seems to load the aex(dll) and execute the main function fine, but afterwards it crashes immediately and I have no idea why. This is ho

  • IPod Classic and Alpine CDE-9881?

    Will the iPod Classic, released this year, work with the Alpine CDE-9881 car stereo?

  • Bug with currently selected and customised power plan.

    I have reproduced this twice now. I customised my power plans (the balanced and power saver but not the high performance). My personal settings are to never sleep and for sleep not to be an option. On two occasions I have returned to the PC and found

  • How to handle user exits in Standalone BIP 10.1.3.4.1

    Hi, I tried converting our Oracle 11i (6i reports) report to BI Publisher. Our user exits calls are commented by the BIPBatchConversionUtility. Wondering how can we handle user exits part to set the organization id and input the key flexfield informa

  • Billing date for a purchase order in the corresponding billing document

    Hello, for a purchase order I need to select the billing date in the bill which corresponds to the purchase order. There is a posting date in the order history but I am not sure that this date is identical with the billing date in the purchase order.