I am using Texmaker with PDFLaTeX build option in both Windows 7 and Ubuntu 14.04. The .tex uses my institute's template which is said "using scrreprt class of KOMA-Script".
The problem is: I can copy and paste the content of the PDF file which is created in Windows normally, while the copied content of the PDF file which is created in Ubuntu is just a combination of special characters, for example ❲✐♥❞♦✇s P❧❛tt❢♦r♠ instead of Windows Plattform
\documentclass{scrreprt}
\usepackage{t1enc}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,ngerman]{babel}
\begin{document}
Windows Plattform
\end{document}
UPDATE:
pdffonts test.pdf results:
name type encoding emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
[none] Type 3 Custom yes no no 4 0
About \usepackage{t1enc}: I don't know, since it comes from my institute's template and my supervisor just told me to modify the template as less as possible. There is just a comment % dc-Fonts following that package.
pdffonts myfile.pdf(where 'myfile' is the name of the PDF where you see this problem)? Also please remove\usepackage{t1enc}before compiling. Why do you have that there? – jon Feb 20 '16 at 03:40cm-superor use a different font.\usepackage{lmodern}is a 'modern' but nearly identical font to the default you are using. Also skip the\usepackage{t1enc}: you are doing enough with\usepackage[T1]{fontenc}. – jon Feb 20 '16 at 03:51sudo apt-get install cm-superif you installed your 'TeX system' from the Debian repositories on which Ubuntu depends. – jon Feb 20 '16 at 03:53.texfile parallel between Ubuntu and Windows (on lab and at home, commit changes via SVN). Does usingcm-superon Ubuntu (or\usepackage{lmodern}as you said) make any difference between the PDFs exported by each machine? – scmg Feb 20 '16 at 03:57pdflatex), then there shouldn't be a problem. Anyway, regardless of the Windows world, on Ubuntu, you should installcm-super(and I doubt the PDFs b/w the two computers will be appreciably different afterwards). – jon Feb 20 '16 at 04:00\usepackage{lmodern}has solved my problem ... I will try withcm-superlater, thank you – scmg Feb 20 '16 at 04:03lmodernorcm-superin Ubuntu yet). – scmg Feb 20 '16 at 13:17cm-superregardless of whether it does or seems to help with this problem (it will then be used whenever you use\usepackage[T1]{fontenc}but don't also load a specific font package). As to whether you should usecm-superorlmodern, the answers here are worth reading. – jon Feb 22 '16 at 14:35