After sending my file to printer, I notice that some figures are very weak in print.
Is there any way to make them bold ?
I see that \boldmath do work on equations.
Is there any othere way to change figures to bold one as equations ?
Thanks, Tommy
After sending my file to printer, I notice that some figures are very weak in print.
Is there any way to make them bold ?
I see that \boldmath do work on equations.
Is there any othere way to change figures to bold one as equations ?
Thanks, Tommy
It is possible to "bolden" figures under 2 conditions:
latex->dvips->ps2pdf)For other workflows (pdfLaTeX, XeLaTeX, LuaLaTeX), PDF vector image files can be treated one by one, but must be converted to Postscript first. See below.
Here, we enhance line widths of the second figure by factor 3:
\pdfoutput=0 %force dvi output
\documentclass{article}
\usepackage{mwe}
\usepackage{graphicx}
\begin{document}
\includegraphics{example-image}
\special{ps: userdict /setlinewidth {3 mul systemdict /setlinewidth get exec} put}
\includegraphics{example-image}
\special{ps: userdict /setlinewidth undef} %undo
\end{document}
For single vector graphics files, the following template can be used. PDF files must be converted to Postscript first. The result can be converted back to PDF for inclusion in the main document, if this one is to be processed with pdfLaTeX, LuaLaTeX or XeLaTeX.
Template to be processed with the latex->dvips->ps2pdf sequence of commands, using tiger.eps as an example file:
%%%%%%%%%%%% adjust this %%%%%%%%%%%%%
\def\graphicsFile{tiger.eps}
\def\enhanceFactor{3}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pdfoutput=0 %force dvi output
\documentclass{article}
\usepackage[active,tightpage]{preview}
\usepackage{graphicx}
\begin{document}%
\begin{preview}%
\special{ps: userdict /setlinewidth {\enhanceFactor\space mul systemdict /setlinewidth get exec} put}%
\includegraphics{\graphicsFile}%
\end{preview}%
\end{document}
*.ps, *.eps) format and you process your document with latex, followed by dvips, followed by ps2pdf.
– AlexG
Feb 28 '17 at 13:46
figurethefigureorfigurethe number? If your figure is generated by LaTeX (e.g. pstricks or pgfplots etc., there are some means) and for other occasions, just included from other figure generators those are reponsible, but if you include some.pngor.jpgfile you have to manipulate the image itself withgimpetc. – Feb 28 '17 at 13:15savetreespackage? But I was under the impression you had enough trees around your home. – samcarter_is_at_topanswers.xyz Feb 28 '17 at 13:57