Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

Fonts not displayed properly in Adobe Acrobat in Ubuntu

Writer Andrew Henderson

While opening PDF in Adobe Acrobat in Ubuntu, the fonts are misrepresented as follows. I tried to fix this by checking the option "Use local fonts" but it did not help.

The document reading via Acrobat:

acrobat

whereas the actual PDF (opened in Document Viewer) looks like this:

document viewer

How to fix this issue?

This is the pastebin link where the pdffonts command output for the document is available. The above document can be downloaded from here: EDEM 2.6Theory Reference Guide.

1

1 Answer

I assume you're using Acrobat Reader 9.x for Linux, which is still available on Adobe's FTP server.

The problem is Arial and Times New Roman are being replaced with the generic font Adobe Sans. Fonts have to be copied directly to the Acrobat font folder because it doesn't use the system fonts.

  • Install Microsoft Core Fonts for the Web.

    sudo apt install ttf-mscorefonts-installer

    You may have to reinstall if a previous install was unsuccessful.

    sudo apt reinstall ttf-mscorefonts-installer
  • Copy the fonts to the Acrobat font folder.

    sudo cp /usr/share/fonts/truetype/msttcorefonts/* /opt/Adobe/Reader9/Resource/Font/

Acrobat PDF Fonts

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy