2

I'm using TeXLive 2016 in ubuntu. I get this message for every line when I run my code:

Underfull \hbox (badness 10000) has occurred while \output is active

and it makes a pdf with size 0 byte.

that's my code.

this code works well without this lines:

    \def\@oddhead{%
    \begin{RTL}%group
        \psset{unit=1cm}%
        \rput[tl](-4.5,2.5){\includegraphics{t1.pdf}}%
   \end{RTL}%group
}

what's the problem?

1 Answers1

3

add \hfill before the final }

the \@oddhead macro has to fill the entire page head to the full width of \textwidth your pstricks construct (why pstricks there?) is a fixed width box so you need to add some stretchy white space afterwards.

David Carlisle
  • 757,742