I have a problem where all fonts come out too dim. Is there any thing I can do to get a different look and feel from the pdfs?
My tex file looks like
\documentclass[a4paper,twoside]{articl开发者_运维技巧e}`
\usepackage{graphics}
\usepackage{color}
\usepackage{hyperref}
\usepackage{multirow}
\usepackage{longtable}
\usepackage{fullpage}
\usepackage[pdftex]{graphicx}
\usepackage{fancyhdr}
\oddsidemargin 0cm
\evensidemargin 0cm
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0.0pt}
\rfoot{Raval, Ketan R -13223}
\textwidth 15.5cm
\topmargin -1cm
\parindent 0cm
\textheight 26.5cm
\parskip 1mm
\begin{document}
\fontencoding{\encodingdefault}
\renewcommand{\familydefault}{\sfdefault}
\fontshape{\shapedefault}
\selectfont
So how can I improve my overall look and feel of the pdf?
Thanks
Maybe you don't like Computer Modern Roman? Try a different type, like Palatino. You can vary the number points of the type to give it a heavier feel, say by using 12pt fonts.
Otherwise, I agree with noviceoof, everything with your .tex file looks perfectly standard. It's just about possible that Latex's font path is finding fonts you don't like, but I would try different fonts before testing this.
You could try different document classes (book, report, letter). What do you mean with "coming too dim"?
Have a look at
http://www.tug.org/pracjourn/2006-1/schmidt/schmidt.pdf
If you just want to change your font, check out http://www.tug.dk/FontCatalogue/ LaTeX actually has quite a few nice fonts :P
Verify if you have installed cm-super package. Without it Computer Modern font looks dim in output pdf.
精彩评论