So finally what worked for me was to bypass WinEdt altogether and use the command line to compile my latex file and generate an acceptable pdf. Here's what I did:
To compile your latex file
latex your_latex_filename
To generate a letter size pdf document after compilation:
dvipdfm -p letter your_latex_filename
To check what type of fonts your pdf document contains:
pdffonts your_pdf_filename.pdf
To force your pdf file to use embedded fonts and output a letter sized document:
dvips -t letter -Pdownload35 -o your_latex_filename.ps your_latex_filename.dvi
ps2pdf your_latex_filename.ps your_output_filename.pdf
No comments:
Post a Comment