line feed printing issue

I am have an issue with the carrige or line feed chars showing up on info converted to a pdf file from a Orcale tool. Any direction would be appericated.

ex.

John doe 12435       1     232344     1
Jane doe 12435       1     424343     1
     when should be like this
John doe 12435           232344     
Jane doe 12435           424343
# cat file
John doe 12435       1     232344     1
Jane doe 12435       1     424343     1

# awk '{print $1,$2,$3"\t\t"$5}' file
John doe 12435          232344
Jane doe 12435          424343