Solved Problem with TexLive.

rigoletto@

Developer
Hello,

Should I expect some different behavior on the FreeBSD TexLive implementation? I couldn't find anything on FreeBSD Wiki.

I installed print/texlive-full to avoid anything missing, however I am getting serious issues with fonts.

Almost any font I try to use I get some message of it not being installed, ever Latin Modern or does not work. When, in some case, it does not return a error, the process works but with a "generic" and not good looking serif font (it is not the Computer Modern), and not with the selected one.

I also tried running updmap-sys but without luck. :mad:

Setting lmodern:
Code:
mktexpk: don't know how to create bitmap font for ec-lmr12. mktexpk: perhaps ec-lmr12 is missing from the map file.

However, I installed some fonts using the getnonfreefonts-sys script later, and (only) the URW Classico worked but just when setting \allsectionsfont{\sffamily}, and only on the sections.

This is my basic template I have using since years without any problem:
Code:
\documentclass[a4paper,12pt]{article}
\usepackage[top=3cm,left=3cm,right=2.5cm,bottom=3cm]{geometry}
\usepackage[portuguese]{babel}                % set default language
\usepackage[T1]{fontenc}                    % T1 font codification
\usepackage[utf8]{inputenc}                     % use specific encoding
\usepackage{lmodern}                         % "Latin Modern" font
\usepackage{classico}                        % "URW-Classico" font
\usepackage[official]{eurosym}                % enable "€" (official) symbol
\usepackage{setspace}                        % set space between lines
\usepackage{indentfirst}                    % indent the first paragraph
\usepackage{enumitem}                        % control layout of lists
\usepackage{gensymb}                        % enable some symbols
\usepackage{lipsum}                            % lorem ipsum tool
\usepackage{sectsty}                        % change styles of sections
\allsectionsfont{\sffamily}                    % set all sections sans-serif
%
%%%%%%%%%%%%%%%%%%%%%%%%% Improve General Appearance %%%%%%%%%%%%
\usepackage[activate={true,nocompatibility},draft,tracking=true,kerning=true,spacing=true,factor=1100,stretch=10,
shrink=10]{microtype}
%
%\DisableLigatures[f,i,t]{encoding = T1}    % disable ligadures
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Bookmarks e Links %%%%%%%%%%%%%%%%%%
%
\usepackage{hyperref}                % enable hyperlinks
\usepackage{bookmark}                % organize "hyperref"
\hypersetup{colorlinks=true,breaklinks=false,pageanchor=true,pdftex=true,
    linkcolor=black,urlcolor=black,anchorcolor=black,citecolor=black,
    pdftitle={},
    pdfauthor={},
    pdfsubject={},
    pdfkeywords={}
}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\begin{document}
\onehalfspace


%
\end{document}

EDIT: just to add the output of kpsewhich ec-lmr12.tfm:

/usr/local/share/texmf-dist/fonts/tfm/public/lm/ec-lmr12.tfm

The font is in there.
 
# updmap-sys
Code:
updmap will read the following updmap.cfg files (in precedence order):
  /usr/local/share/texmf-config/web2c/updmap.cfg
updmap may write changes to the following updmap.cfg file:
  /usr/local/share/texmf-config/web2c/updmap.cfg
dvips output dir: "/usr/local/share/texmf-var/fonts/map/dvips/updmap"
pdftex output dir: "/usr/local/share/texmf-var/fonts/map/pdftex/updmap"
dvipdfmx output dir: "/usr/local/share/texmf-var/fonts/map/dvipdfmx/updmap"

updmap is creating new map files
using the following configuration:
  LW35 font names                  : URWkb (default)
  prefer outlines                  : true (default)
  texhash enabled                  : true
  download standard fonts (dvips)  : true (default)
  download standard fonts (pdftex) : true (default)
  kanjiEmbed replacement string    : noEmbed (default)
  kanjiVariant replacement string  :  (default)
  create a mapfile for pxdvi       : false (default)

Scanning for LW35 support files  [  3 files]
Scanning for MixedMap entries    [  0 files]
Scanning for KanjiMap entries    [  0 files]
Scanning for Map entries         [  4 files]

Generating output for dvipdfmx...
Generating output for ps2pk...
Generating output for dvips...
Generating output for pdftex...

Files generated:
  /usr/local/share/texmf-var/fonts/map/dvips/updmap:
       15782 2017-03-16 01:58:19 builtin35.map
       21255 2017-03-16 01:58:19 download35.map
       25963 2017-03-16 01:58:19 psfonts_pk.map
       25963 2017-03-16 01:58:19 psfonts_t1.map
       25958 2017-03-16 01:58:19 ps2pk.map
          14 2017-03-16 01:58:19 psfonts.map -> psfonts_t1.map
  /usr/local/share/texmf-var/fonts/map/pdftex/updmap:
       25965 2017-03-16 01:58:19 pdftex_dl14.map
       24300 2017-03-16 01:58:19 pdftex_ndl14.map
          15 2017-03-16 01:58:19 pdftex.map -> pdftex_dl14.map
  /usr/local/share/texmf-var/fonts/map/dvipdfmx/updmap:
         305 2017-03-16 01:58:19 kanjix.map

Transcript written on "/usr/local/share/texmf-var/web2c/updmap.log".
updmap: Updating ls-R files.

The /usr/local/share/texmf-config/web2c/updmap.cfg file just have four fonts, exactly the ones installed using getnonfreefonts-sys:

Code:
Map classico.map
Map zpeu.map
Map ugm.map
Map ua1.map
 
Back
Top