Consider two identical tex files file1.tex and file2.tex:
\documentclass[10pt]{article}
\begin{document}
Hello World
\end{document}
The following two methods can be used to generate a pdf file from these identical tex files
Method 1
pdflatex file1.tex
Method 2
latex file2.tex
dvips file2.dvi
ps2pdf file2.ps
On a machine with TeX Live 2015, these methods generate pdf files with different font encoding, i.e., the outputs of
pdffonts file1.pdf
pdffonts file2.pdf
have different 'encoding'. While file1.pdf has Builtin encoding, file2.pdf has WinAnsi encoding. What change in the texfile will force pdflatex to generate pdfs with WinAnsi encoding? Related posts 1, 2, 3, and 4, don't seem to help.