Sorry for the time it took, but here it is:
Code: Select all
\documentclass[a4paper,11pt]{article}
% define the title
\author{B.~Fallqvist}
\title{MWE}\usepackage{graphicx,float,amssymb,dblfloatfix}
\usepackage[fleqn]{amsmath}
\usepackage{pstricks,pst-plot,pstricks-add,pst-grad,pst-node,pst-tree}
\begin{document}
\newcommand{\testnumbers}{
0.02 0.1
0.1 1
1 10
10 100}
\begin{titlepage}
% generates the title
\maketitle
% insert the table of contents
\end{titlepage}
\newpage
\section{MWE}
\begin{figure*}
\centering
\psset{xunit=3.6cm,yunit=1.0cm}
\begin{pspicture}(0,-1)(-2,2)
\pstScalePoints(1,1){log}{log}
\listplot[linecolor=blue,linewidth=0.5pt]{\testnumbers}
\psaxes[subticks=10,axesstyle=frame,xylogBase=10,logLines=all,ticksize=5pt,tickstyle=inner,linewidth=0.5pt,Ox=-2,Oy=-1]{->}(-2,-1)(1,2)
\end{pspicture}
\end{figure*}
\end{document}
Now, all I want to do is set the x-axis to start where the line starts, that is at 0.02 instead of 0.01. How do I do that?
Thanks