Preview and greek letters

I often get pdf's containing som greek letter-symbols (like sigma, tau, gamma etc).
But in some pdfs, the symbols have vanished. They show fine in Acrobat, but not in Safari, Preview or Quick Look.
I have a hunch that a common trait of the faulty pdf's is, that they are created with MS Word and maybe equation editor.
Is there any solution to this? (I tried doing a "save as" from Acrobat, which didn't work)

I think it is a problem with Word created PDFs. I'm having the same problem with some school PDFs as well that were created in Word.
Now it's doubly annoying since I can't use these files on my iPad. At least on the desktop, I can open them with Acrobat Reader.

Similar Messages

  • Euro-sign (and Greek) doesn't work even with nchar/nvarchar2

    This is something that has been blocking me for a few days now, and I'm running out of ideas.
    Basically, the problem can be summarised as follows:
    declare
        text nvarchar2(100) := 'Make €€€ fast!';
    begin
      dbms_output.put_line( text );
    end;And the output (both in SQL Developer and Toad) is:
    Make ¿¿¿ fast!See, I was under the impression that by using nchar and nvarchar2, you avoid the problems you get with character sets. What I need this for is to check (in PL/SQL) what the length of a string is in 7-bit units when converted to the GSM 03.38 character set. In that character set, there are 128 characters: mostly Latin characters, a couple of Greek characters that differ from the Latin ones, and some Scandinavian glyphs.
    Some 10 other characters, including square brackets and the euro sign, are escaped and take two 7-bit units. So, the above message takes 17 7-bit spaces.
    However, if I make a PL/SQL function that defines an nvarchar2(128) with the 128 standard characters and another nvarchar2(10) for the extended characters like the euro sign (the ones that take two 7-bit units), and I do an instr() for each character in the source string, the euro sign gets converted to an upside-down question mark, and because the delta (the first Greek character in the GSM 03.38 character set) also becomes an upside-down question mark, the function thinks that the euro sign is in fact a delta, and so assigns a length of 1.
    To try to solve it, I created a table with an nchar(1) for the character and a smallint for the number of units it occupies. The characters are entered correctly, and show as euro signs and Greek letters, but as soon as I do a query, I get the same problem again. The code for the function is below:
      function get_gsm_0338_length(
        text_content in nvarchar2
      ) return integer
      as
        v_offset integer;
        v_length integer := 0;
        v_char nchar(1);
      begin
        for i in 1..length(text_content)
        loop
          v_char := substr( text_content, i, 1 );
          select l
          into v_offset
          from gsm_0338_charset
          where ch = v_char;
          v_length := v_length + v_offset;
        end loop;
        return v_length;
        exception
          when no_data_found then
            return length(text_content) * 2;
      end get_gsm_0338_length;Does anybody have any idea how I can get this to work properly?
    Thanks,
    - Peter

    Well, the person there used a varchar2, whereas I'm using an nvarchar2. I understand that you need the right codepage and such between the client and the database if you use varchar2, which is exactly the reason why I used the nvarchar2.
    However, if I call the function from /Java/, it does work (I found out just now). But this doesn't explain why SQL Developer and Toad are being difficult, and I'm afraid that, because this function is part of a much bigger application, I'll run into the same problem.
    - Peter

  • Hello there! i am using Adobe acrobat pro DC and using windows 8.1. Recently I was trying to convert a web page (includes greek letters) into pdf. I noticed that the conversion is not accurate, some words are missing, some are misplaced. Especially greek

    hello there! i am using Adobe acrobat pro DC and using windows 8.1. Recently I was trying to convert a web page (includes Greek letters) into PDF. I noticed that the conversion is not accurate, some words are missing, some are misplaced. Especially Greek words are not accurately converted or even not converted. Please give me some suggestions to improve this issue. Regards

    Hey quantum info,
    Thank you for posting at Adobe forums. We would love to help you out.
    Could you please let me know if you have tried converting other web pages to PDF and checked if the same issue persists.
    How have you been trying to convert the web page to PDF?
    Are you trying to convert to PDF directly via browsers or using "File > Create > PDF from Web Page"  option in Acrobat.
    Let me know more so that I can analyze where actually the issue persists.
    Hope to hear from you.
    Regards,
    Anubha

  • Greek Letters, Symbols for College Fraternities and Sororites

    Does anyone know how to access a palette of characters that has Greek letters or symbols for Greek Fraternities and Sororities? I am working on a project and I need to have their letters on the screen.
    Thanks!
    Examples:
    Delta looks like a triangle
    Omega looks like a horseshoe
    Phi looks like a O with a line in the middle of it.

    Here's another way.
    Go to System Preferences > International > Input Menu.
    Activate the checkboxes for Character Palette and Keyboard Viewer.
    Close System Preferences. You will notice that a flag has appeared in your menu bar.
    Click the flag and choose Character Palette. Click on Greek in the left column.
    In FCP, activate the text input field by clicking in it once.
    Double clicking the symbols in the Character Palette will insert them in the text input field.

  • Greek Letters and Superscript

    Is it possible to insert a greek character into pages on the ipad? When I import an office doc containing a greek character, the greek character is present. Also, is it possible to superscript and subscript in pages on the ipad?

    I know this is an old thread but it's still the top result in google for this problem so I'm posting here.
    I had been copy/pasting greek letters & other symbols for a long time before I realised this trick today.
    Use the iPad's shortcuts feature in keyboard settings for any symbols you use regularly, eg I use "ss2" as a shortcut for 2 and "/-" for ±, still a work around but alot smoother than what I've been doing for over a year with the added bonus of working in any app.
    Combined with the greek intl keyboard this is barely a problem, even if it is a glaring omission by apple.

  • Using Greek letters and medical symbols in DW

    I am new to a medical college and have never used medical or
    Greek symbols in web pages. I have located the HTML entity
    reference for greek letters in DW. However, some of the medical
    publication references must show numbers slightly below the text
    baseline. These are not available in the DW list.
    Can anyone advise me on how to create numbers below a text
    baseline?

    Wrap the entities in a <sub> tag.
    Ex:
    <p>Log<sub>n</sub>(x) = 2.14</p>
    "DaveF2007" <[email protected]> wrote in
    message
    news:esna6t$fgn$[email protected]..
    >I am new to a medical college and have never used medical
    or Greek symbols
    >in
    > web pages. I have located the HTML entity reference for
    greek letters in
    > DW.
    > However, some of the medical publication references must
    show numbers
    > slightly
    > below the text baseline. These are not available in the
    DW list.
    >
    > Can anyone advise me on how to create numbers below a
    text baseline?
    >

  • Qt and xfce and a bunch of greek letters

    first of all i googled my self into some of this conclusion so let's see my case
    all programs that use qt in my computer have a strange way to comunicate with the user. for that they use a greek letters that we mentaly have to see similarities in order to read!!!
    a bunch of programs in greek.
    notepaddqq
    vlc
    on qtconfig-qt4 we can see what went wrong in the first image, we have a font called Standard Simbols L and just looks like Greek
    here i select tahoma font and the sample is now readable
    the problem is when i save changes and close it. it doesn't save anything,
    and a little bit of information when i do su every program runs in english
    here is the config with tahoma
    check that strange font here when i selected it
    i use greybird as my theme, (i read that could be for this somewhere)
    and my locale is set this way
    LANG=en_US.UTF-8
    LC_CTYPE="en_US.UTF-8"
    LC_NUMERIC="en_US.UTF-8"
    LC_TIME="en_US.UTF-8"
    LC_COLLATE="en_US.UTF-8"
    LC_MONETARY="en_US.UTF-8"
    LC_MESSAGES="en_US.UTF-8"
    LC_PAPER="en_US.UTF-8"
    LC_NAME="en_US.UTF-8"
    LC_ADDRESS="en_US.UTF-8"
    LC_TELEPHONE="en_US.UTF-8"
    LC_MEASUREMENT="en_US.UTF-8"
    LC_IDENTIFICATION="en_US.UTF-8"
    LC_ALL=

    that file is another issue. it is created when i open any qt program. i already deleted it. and call qtconfig-qt4, deleted and call vlc and is same old greek. i even edited it to tahoma instead of standard symbols L. i already ran qtconfig then rm it then save the configs (in this case it saved tahoma in the file).  i don't know what else to do with that file. maybe a copy paste from a functional one would resolve it but I doubt it.
    Thanks

  • Clearscan Errors in Preview and other pdf viewers

    I scan a lot of documents and have started using the ClearScan OCR option.  This produces very good quality scans and very small file sizes, but I've been running into problems when I try to read my pdfs in Preview or other pdf readers.  If I open a ClearScanned pdf in Preview and try to copy and paste some of the text, it pastes just fine.  If I save the pdf in Preview, however, and then try to copy and paste text, the result is something like this: "␣␣␣␣␣ ␣␣␣".  The PDF still looks fine, it doesn't change its visual appearance, but the OCR is no longer correct. This is a big problem because I use several other pdf readers to read and annotate my PDFs, and any time I save a ClearScanned PDF I lose the functionality of scanned text (since I can no longer copy and paste or even search the PDF since all the letters have been replaced with "␣").  Has anyone else had any problems with ClearScan?  Is ClearScan only compatible with Adobe, or is there any way to save a ClearScanned PDF so that it will work correctly with other PDF viewers?   Thank you!

    I have not tried it, but I've seen posted in another thread that one of the Preflight options in AA9 allows you to embedd the fonts created by the ClearScan process. This might fix your problem. You just have to figure out how to use Preflight!
    I just tried this - it's the "Embed fonts" option under the PDF fixups category. I can't tell if it will do what you need though, as I don't use Preview or any other PDF viewer. It did seem to embed fonts that were previously not embedded, though (a) they still didn't show up in the PDF Optimizer dialog, only in the document properties dialog, and (b) it seems like the ClearScan were embedded in the first place, even before I ran this Preflight.

  • After updating with ios7, I cannot proceed because I cannot enter my password since it uses Greek letters but the keyboard available is Latin. How can I change the keyboard to Greek?

    After updating with ios7, I cannot proceed because I cannot enter my password since it uses Greek letters but the keyboard available is Latin. How can I change the keyboard to Greek?

    try tapping holding on the key that would be most similar to the letter you want to enter, that will bring up a menu of other characters similar to that character and maybe the greek letter will be included in that menu

  • How to make greek letters copiable in pdf files?

    Ctrl-C will not copy the greek letters in the following pdf file. For example, if I select Lambda, then type ctrl-C, and ctrl-V to somewhere, I will get nothing pasted. Is there a way to modify the pdf so that greek letters can be copied? Thanks.
    https://rapidshare.com/files/3819691282/acrobat_change_font.pdf

    Bill@VT wrote:
    For normal windows fonts you right click on the font file and there should be an option to install it. I am not sure if it copies the font to the font folder or it is best to move it there first. As far as embedding so it can be copied, that will not help. The MTMI font is embedded in your PDF. The Times New Roman fonts are not. I embed all fonts used as subsets. However, to copy the font to WORD or such and make it useful, you have to have the font on your system, not just embedded.
    From the instructions I read, you have to have more than the tfm file. I think the vf file is the font file. That is not the actual font file. There are some instructions at the site I already pointed to. I would check at the site where you are getting the font. I would just have to search to find the instructions for the file. They would help you for working with the font on your system, but would not do the other aspect you wanted of helping others. As I indicated, the font has to be installed locally to enable proper copying. The fonts files are not copied from the PDF.
    Since my original question can not be solved unless I get the font installed in my system (but I can't). Let me change my question a bit.
    How to search for such a greek letter \Lambda in this pdf file? Is there a walkaround? Is there a tool can help replace the font of \Lambda by something available in my system?

  • Preview and Grayscale wierdness

    When I view a PDF comprised of grayscale images, all of the grayscale pages are displayed in reversed white letters on black! What gives? The non-grayscale pages are perfect.

    I took a look at it out of curiousity, using both the Tiger and Leopard versions of Preview, and both show the reversal. So does QuickTime Player, which will also open it. Photoshop and Illustrator would not open it at all, demanding a password. The GIMP would open it, and will display the grayscale pages normally, black on white. ColorSync Utility also opened it, again with white on black. So it looks like the problem is deep in OS X Leopard (GIMP is using other stuff from X11 to do its thing). BTW, the pages that are backwards won't display at all in the Panther version of Preview.
    Francine
    Francine
    Schwieder

  • Greek letters in dwm status bar? How?

    Is there a change in config.h that I could do to show Greek letters normally?
    Thank you

    Sorry..
    The problem exists when I open a Greek web page in a browser. In dwm status bar the Greek characters of the title of the web page are not displayd correctly.
    Here is my config.h:
    /* See LICENSE file for copyright and license details. */
    /* appearance */
    static const char font[] = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
    static const char normbordercolor[] = "#444444";
    static const char normbgcolor[] = "#222222";
    static const char normfgcolor[] = "#bbbbbb";
    static const char selbordercolor[] = "#005577";
    static const char selbgcolor[] = "#005577";
    static const char selfgcolor[] = "#eeeeee";
    static const unsigned int borderpx = 1; /* border pixel of windows */
    static const unsigned int snap = 32; /* snap pixel */
    static const Bool showbar = True; /* False means no bar */
    static const Bool topbar = True; /* False means bottom bar */
    /* tagging */
    static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
    static const Rule rules[] = {
    /* class instance title tags mask isfloating monitor */
    { "Gimp", NULL, NULL, 0, True, -1 },
    /* { "Firefox", NULL, NULL, 1 << 8, False, -1 },*/
    /* layout(s) */
    static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
    static const int nmaster = 1; /* number of clients in master area */
    static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
    static const Layout layouts[] = {
    /* symbol arrange function */
    { "[]=", tile }, /* first entry is default */
    { "><>", NULL }, /* no layout function means floating behavior */
    { "[M]", monocle },
    /* key definitions */
    #define MODKEY Mod4Mask
    #define TAGKEYS(KEY,TAG) \
    { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
    { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
    { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
    { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
    /* helper for spawning shell commands in the pre dwm-5.0 fashion */
    #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
    /* commands */
    static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
    static const char *termcmd[] = { "st", NULL };
    static const char *rebcmd[] = { "systemctl", "reboot", NULL };
    static const char *shutcmd[] = { "systemctl", "poweroff", NULL };
    static const char *dwbcmd[] = { "dwb", NULL };
    static Key keys[] = {
    /* modifier key function argument */
    { MODKEY, XK_p, spawn, {.v = dmenucmd } },
    { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
    { MODKEY|ShiftMask, XK_d, spawn, {.v = dwbcmd } },
    { MODKEY, XK_b, togglebar, {0} },
    { MODKEY, XK_j, focusstack, {.i = +1 } },
    { MODKEY, XK_k, focusstack, {.i = -1 } },
    { MODKEY, XK_i, incnmaster, {.i = +1 } },
    { MODKEY, XK_d, incnmaster, {.i = -1 } },
    { MODKEY, XK_h, setmfact, {.f = -0.05} },
    { MODKEY, XK_l, setmfact, {.f = +0.05} },
    { MODKEY, XK_Return, zoom, {0} },
    { MODKEY, XK_Tab, view, {0} },
    { MODKEY|ShiftMask, XK_c, killclient, {0} },
    { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
    { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
    { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
    { MODKEY, XK_space, setlayout, {0} },
    { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
    { MODKEY, XK_0, view, {.ui = ~0 } },
    { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
    { MODKEY, XK_comma, focusmon, {.i = -1 } },
    { MODKEY, XK_period, focusmon, {.i = +1 } },
    { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
    { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
    TAGKEYS( XK_1, 0)
    TAGKEYS( XK_2, 1)
    TAGKEYS( XK_3, 2)
    TAGKEYS( XK_4, 3)
    TAGKEYS( XK_5, 4)
    TAGKEYS( XK_6, 5)
    TAGKEYS( XK_7, 6)
    TAGKEYS( XK_8, 7)
    TAGKEYS( XK_9, 8)
    { MODKEY|ShiftMask, XK_q, quit, {0} },
    { MODKEY|ShiftMask, XK_r, spawn, {.v = rebcmd } },
    { MODKEY|ShiftMask, XK_s, spawn, {.v = shutcmd } },
    /* button definitions */
    /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
    static Button buttons[] = {
    /* click event mask button function argument */
    { ClkLtSymbol, 0, Button1, setlayout, {0} },
    { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
    { ClkWinTitle, 0, Button2, zoom, {0} },
    { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
    { ClkClientWin, MODKEY, Button1, movemouse, {0} },
    { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
    { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
    { ClkTagBar, 0, Button1, view, {0} },
    { ClkTagBar, 0, Button3, toggleview, {0} },
    { ClkTagBar, MODKEY, Button1, tag, {0} },
    { ClkTagBar, MODKEY, Button3, toggletag, {0} },
    Last edited by hariskar (2013-10-02 13:46:57)

  • Greek Letters on JLabel(Epsolon, sigma, etc)

    Hi,
    I am writing a gui application where i have to display some greek letters as Epsolon, sigma, alpha .... HOw will I be able to code that into JLabel?
    LIke:
    JLabel jl = new JLabel(" ? ")
    I searched online before posting, and found some codes, but its not working... :(
    Have any ideas or done anything before?
    Thanks Alot

    Oh, forgot to mention... Besides putting a picture of the character on the label.
    Thanks

  • Greek letters

    In a file about heat transmission, I can't view Greek letters. I can only see empty spaces on my samsung galaxy xcover 2 running Android 4.1.2 and Adobe 11.1.3 build 86198. What do I do?

    Hi capkoenig,
    Could you please send the test file at DL-adobereader-android <[email protected]> for helping us invetsigate the issue?
    Thanks,
    - Reader Mobile team

  • Very dissapointed! no rendereing of Greek letters very problematic

    The main reason I bought the ipad was to have a convenient way to study the many economics academic journal articles I read for grad school. I was loving the ipad (and iAnnotate pdf) until I got to a point in one article where there should have been a Greek letter and it just was not there! I tried several pdf viewers and none seems to render Greek charachters. I was shocked since Greek letters are so common in any article with equations. This means I can't really read about %90 of the articles I need to read! Is there anything I can do? If not I seriously am considering returning this and buying a laptop instead

    David M Brewer wrote:
    There was only one PDF reader at the time I when I made PDFs and that was Adobe Acrobat. It wasn't because there was no standard it was because as I state above. If the font was missing on a computer the font was read from the PDF. If the font is missing and not embed the reader will substitute a font. And you can't have font substituting in printing , mess things up really bad. One of the other reasons that a lot of these programs don't embed fonts is fonts are copyright. Netscape a few years back tried to come up with a way to embed fonts on a webpage. Didn't last long until the copyright laws suits started to come in for copyright infringements over the fonts being used.
    As for web pages... A good web developer list more than one font in a CCS, in descending order. If a font is missing the next font in the list will be used. If there isn't a declare font for a web page the browser will use the computers default font.
    Fonts In a PDF is a iffy thing if they aren't embedded.
    It is almost always a good idea to embed fonts, but Tom is absolutely correct that it is not necessary to embed fonts to display Greek. A well formatted PDF using standard fonts with Greek glyphs should display fine without anything embedded. At least, it does so on Mac.
    I tried some experiments with different fonts, but there are a lot of variables to juggle around. Anyhow: A Greek PDF with the font Minion pro font only displays well on the iPad if the font is embedded. A Western PDF with the same font always displays fine, even though the iPad does not have Minion Pro.
    I failed to find any iPad font with Greek that I could unembed from PDF files. There seems to be some peculiar technical limitation in Adobe Acrobat for Helvetica, Times and Arial, where it always keeps part of the font embedded, no matter how much you tell Adobe Acrobat to unembed them.
    Anyhow, you are right that embedding fonts solves a lot of problems, but it is not the only way to solve them.

Maybe you are looking for