3
votes
2answers
45 views

What fonts are compatible with T2A encoding?

I'm trying to figure out what fonts are compatible with T2A encoding - seems like there's no such a list known to Google. I've identified that iwona and computer roman (default) are supported. ...
8
votes
2answers
80 views

Dollar sign with txfonts and fontenc

I have a strange problem with the dollar sign ($) and \textbf{} when using the txfonts and fontenc packages. The dollar sign has a space after it. Both packages are required to reproduce the problem. ...
8
votes
2answers
149 views

Why does \usepackage[T2A]{fontenc} take over?

I want to produce a document with non-serif type. I also want to include Cyrillic characters. These two aims seem to be mutually exclusive. When I comment out \usepackage[T2A]{fontenc}, the document ...
5
votes
1answer
104 views

Embedded fonts with/without fontenc/inputenc

Well, let me explain. I tried to select a part of a text on a PDF file to copy and paste. I noticed that accented letters disappear when selected, as the image below shows. So, I decided to see the ...
1
vote
0answers
88 views

“Corrupted NFSS Tables” Using `otftotfm` and Fontenc

I have just converted some OTF fonts using otftotfm; these fonts were created using a custom encoding I wrote called EL (I needed to modify the T1 encoding to include extra ligatures). When I try to ...
4
votes
1answer
319 views

MikTeX for MS Windows seems to use Type3 (raster) fonts when instructed to use Type1 (vector)

I use MikTeX as my compiler for Windows. The problem is that it uses Type3 (raster) fonts even though I've stated: \usepackage[T1]{fontenc} in the preamble. As far as I've understood, this will ...
2
votes
1answer
1k views

fontenc with T1 option gives error: Font … not loadable: Metric (TFM) file not found

I freshly installed 'basic' version of TeX Live 2012 (not full, only basic version). I have following line in my code: \usepackage[T1]{fontenc} I get following error: ...
1
vote
1answer
93 views

loading fontenc breaks tipa [duplicate]

Possible Duplicate: Using TIPA with fontspec I try to get an a with a dash and a glotal stop typeset. Depending on the ordering of the loading of the packages I get either the ā or the ʔ. ...
2
votes
1answer
338 views

Fonts too thin when A4 scaled down to A5 in printing

In my document I am using the same settings as in the MWE below. I need copies of the document in A4 and A5. Both have to be identical so I cannot optimise the appearance of both by using a4paper for ...
0
votes
1answer
391 views

The Latex Font Catalogue - Calligra Font

I'm trying to get the following example working: \documentclass[danish,a4paper,11pt]{scrartcl} \usepackage[utf8]{inputenc} \usepackage{babel} \usepackage{slantsc} \usepackage{array} ...
0
votes
0answers
37 views

Other font and verbatim default font [duplicate]

Possible Duplicate: How to use fonts that need different fontenc together? I need use \usepackage[B1]{fontenc} and \usepackage{auncial} but the verbatim is different font and i need the ...
9
votes
1answer
321 views

How to use fonts that need different fontenc together?

I want to use one font for text and another for dropped capitals. Unfortunately, the font catalogue states that one needs fontenc parameter T1 and the other B1. Now, using T1 kind of works. ...
1
vote
1answer
523 views

An arabic font problem [closed]

I have a problem with font in a file written in Arabic with this error message: LaTeX Font Warning: Some font shapes were not available, defaults substituted. further, I have this as an error: ...
0
votes
1answer
786 views

Vector fonts with UTF-8 support?

In fact the situation I find myself in is a bit more complicated than the question might suggest. I need to typeset a document with various accented characters and would like some hyphenation support ...
1
vote
4answers
659 views

How to get \copyright when mixing T1 fonts and fontspec?

This example: \documentclass{minimal} \usepackage{fontspec} \usepackage[T1]{fontenc} \usepackage[osf]{mathpazo} \begin{document} \copyright 2011 \end{document} Gives: ! LaTeX Error: Command ...
0
votes
1answer
543 views

Installing concmath on a mac

I've tried using tlmgr to install the concmath package, but I keep getting the following error: ! Font T1/ccr/m/n/10=eorm10 at 10.0pt not loadable: Metric (TFM) file not found .<to be read ...
8
votes
2answers
1k views

CM clearer than CMsuper? After applying \usepackage[T1]{fontenc}, fonts get blurry

minimum working code: \documentclass{article} % \usepackage[T1]{fontenc} \begin{document} abc ABC 123 \end{document} It opens as pdf in Mac's preview and Acrobat X respectively. The left is ...
2
votes
1answer
521 views

problem of (double)quote--choosing char by glyphs

I use fontenc, fontspec and xelatex to load the custom font. \usepackage[T1]{fontenc} \usepackage{fontspec} \usepackage[utf8]{inputenc} \usepackage{xunicode} ...
2
votes
1answer
560 views

Why aren't there well-hinted Type1 Computer Modern fonts supporting the T1 encoding yet?

Given the popularity of PDF, the pain that is OT1, and the bad on-screen rendering of bitmapped fonts in Adobe's software, I would have expected that someone would have undertaken conversion/extension ...
6
votes
2answers
3k views

Error when using T1 fontenc and urw-garamond from mathdesign

What is causing this error? (see the transcript file for additional information){E:/MikTeX/fonts/enc/dvips/ fontname/texnansi.enc} !pdfTeX error: miktex-pdftex (file ugmr8a.pfb): cannot open Type 1 ...
18
votes
2answers
1k views

Should the fontenc package be loaded before or after font packages?

I seem to recall reading somewhere that fontenc should be loaded either before or after the packages loading fonts, but I cannot remember which. I don't see differences between loading it before and ...
47
votes
4answers
50k views

Why do the less than symbol (<) and the greater than symbol (>) appear wrong as upside down exclamation (¡) or question mark (¿)?

When typing < or > in LaTeX and compiling with pdflatex, the less than and greater than symbols appear at upside down exclamation points. I'm not in math mode.
9
votes
1answer
793 views

Configure LaTeX to use lmodern for T1 by default?

Like those contributing to the discussion of Why are Bitmap-Fonts used automatically?, I have also found the automatic use of bitmap fonts very annoying as the output is really horrible. My question ...
25
votes
4answers
3k views

Why are Bitmap-Fonts used automatically?

I have the following LaTeX-document: \documentclass[a4paper,11pt]{article} \usepackage[utf8x]{inputenc} \usepackage[ngerman]{babel} \usepackage[T1]{fontenc} \title{Sample} \author{Litb} ...