User:Brona/Images/binary logarithm plot.tex

From Wikipedia, the free encyclopedia
%Plot of binomial logarithm
%
%latex binary_logarithm_plot; dvips binary_logarithm_plot
%open .ps file in gimp, choose strong antialias in both text and graphics,
%resulution 500, color mode, crop, blur by 1, scale to 40%, save as .png
\documentclass[12pt]{article}
\usepackage{pst-plot}
\begin{document}
\begin{pspicture}(0,-4)(10,4)
\psset{unit=.6cm}
\newrgbcolor{myblue}{0 0 0.7}
\psgrid[unit=6cm,gridlabels=0pt,subgriddiv=10,subgridcolor=lightgray](0,0)(0,-.4)(1,.4)
\psaxes[arrows=->,arrowsize=2pt 4](0,0)(0,-4)(10,4)
\psplot[plotstyle=curve,plotpoints=100,linewidth=1.8pt,linecolor=myblue]{0.0625}{10}{x log 2 log div}
\end{pspicture}
\end{document}