Tagged Questions
1
vote
0answers
84 views
How can I get a PDF with copyable text if I need to use \usepackage[T1]{fontenc}? [duplicate]
Consider the following situation:
A .tex file with the following content:
\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
Let it be.
\end{document}
The file is compiled by ...
15
votes
2answers
291 views
In which order should I load inputenc and fontenc?
When I’m using pdfLaTeX, my preamble usually contains
\usepackage[utf8]{inputenc}
and
\usepackage[T1]{fontenc}
Should these two be loaded in any particular order? What problems could arise if ...
13
votes
1answer
496 views
Proper use of cmap and mmap
I am curious about the differences between
\usepackage{cmap}
\usepackage[resetfonts]{cmap}
\usepackage{mmap} (= \usepackage[useTeX]{mmap})
\usepackage[noTeX]{mmap}
What are their precise ...
1
vote
0answers
621 views
Ugly font rendering [closed]
I've seen several recommendations of using T1 encoding \usepackage[T1]{fontenc}, so I did. But I did notice a difference in font rendering, and it's not prettier.
Old OT1:
T1 encoding:
I know the ...
7
votes
1answer
478 views
How do I encode foreign characters so that they are searchable in the resultant PDF file?
This may be a PDF problem rather than a LaTeX problem, but as it involves pdfLaTeX output I'm hoping I won't get my wrist slapped too hard.
I'm creating a bibliography, and inevitably some of the ...
1
vote
2answers
143 views
Curious interaction between KOMA, fontenc and hyperref when using hidden glossary entries
In this question is asked how to hide single entries from my acronyms list. The solution works fine in the minimal example from that question. However, trying to use that solution in my actual ...