General[SOLVED] Text not perfectly black

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Vedyimyn
Posts: 4
Joined: Thu May 15, 2014 9:18 pm

[SOLVED] Text not perfectly black

Post by Vedyimyn »

Good evening everyone! This is my first post here :)

I've used LaTeX for two months. I really like it. The only thing I cannot stand with is the readability of the text. It is, let me say, "less black" than Word document exported to pdf. Here is the example:
Image
The left one is the LaTeX one, while the second is written in OpenOffice and exported to PDF. After printing it is even easier to spot that something is wrong with this text and it is not due to the printer.

Here is the code of above LaTeX document:

Code: Select all

\documentclass[12pt]{article}
\begin{document}
Lorem ipsum... %and so on, et caetera
\end{document}
I use TeX Studio on Debian Linux Jessie. I will really appreciate any help.
Last edited by Vedyimyn on Sat May 17, 2014 8:41 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

alainremillard
Posts: 45
Joined: Fri Mar 16, 2012 8:22 pm

[SOLVED] Text not perfectly black

Post by alainremillard »

It is a matter of font. Latex use computer modern roman as oppose to OpenOffice Times New Roman. There is no Times New Roman in latex, one of the options is the mathptmx package.

Code: Select all

\documentclass[12pt]{article}
\usepackage{mathptmx}
\begin{document}
Lorem ipsum... %and so on, et caetera
\end{document}
For more information on Times New Roman and other options, see
http://www.latex-community.org/forum/vi ... 48&t=11596
Vedyimyn
Posts: 4
Joined: Thu May 15, 2014 9:18 pm

[SOLVED] Re: Text not perfectly black

Post by Vedyimyn »

Thank You, it helped :) Initially I got some trouble (missing font error) but after installing a package
"texlive-fonts-recommended" everything works fine.
Post Reply