When I put \usepackage{textcomp} in the preamble, nothing seems to be added to my MiKTeX package database.
Upon using \textcopyleft to insert a glyph from that character set, an ugly bitmap version of the copyleft character appears.
Checking the "Comprehensive Latex Symbol List" reveals that in there is definitely a nice vectorized one, although it claims that the character is obtained from the textcomp package.
Any ideas ?

\usepackage[T1]{fontenc}? – Stephan Lehmke Oct 7 '12 at 9:41textcomppackage is by default in all LaTeX systems; however the outline (Type1) fonts aren't, so you have to install the CM-Super package of MiKTeX. – egreg Oct 7 '12 at 10:16\usepackage[T1]{fontenc}makes it worse ; now the whole document is displayed in a bitmap font. Adding the CM-Super family of fonts (64.92 MB) to display just one glyph is a bit overkill ;-) So, I decided to do without the frivolous copyleft symbol. – Petoetje59 Oct 7 '12 at 10:51\usepackage{lmodern}helps? The Latin Modern fonts might be in the default MiKTeX distro and they're a drop-in replacement for CMR. – Stephan Lehmke Oct 7 '12 at 15:24lmoderntogether with\usepackage[T1]{fontenc}is the standard way to go. It may also improve your document in terms of being able to search for text, and copying/pasting stuff from it. – doncherry Oct 7 '12 at 16:25