I am making a project report for college.
In the instructions regarding report,it is written that
"The matter contained in the report should be typed in MS word (1.5 spacing) Times New Roman,12 pt or equivalent with other software"
So,I decided to make my report with LaTeX.Here is some code,I am experimenting with:
\documentclass [a4paper,12pt,oneside,fullpage]{report}
\pagestyle{empty}
\usepackage{setspace}
\begin{document}
\section*{Acknowledgement}
\begin{onehalfspace}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis vitae justo dolor. In justo felis, facilisis et rhoncus in, feugiat eu elit. Aenean mollis arcu ut nunc pharetra vitae sagittis sapien feugiat. Pellentesque feugiat egestas nulla eleifend accumsan. Suspendisse fermentum dignissim erat vitae congue. Praesent adipiscing erat in nunc tristique porttitor. Ut vitae erat sit amet dui ultricies semper non et enim. Mauris vel sem a risus egestas elementum et vel neque. Mauris consequat, nulla eu aliquet tincidunt, dui libero molestie ligula, nec convallis metus metus vitae elit. Etiam turpis ante, mattis quis elementum et, fermentum a mi. In in sem massa, vel egestas arcu. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed non iaculis libero. In nibh mauris, interdum ut imperdiet ut, eleifend nec dolor.
\end{onehalfspace}
\end{document}
which on compilation generated this PDF

But if I copy,paste the same text in Libreoffice (12 font-size and Times New Roman) and then export it to PDF,it looks like

LaTeX prints the same paragraph in 12 lines,while Libreoffice prints it in 9 lines.
So,is it safe to go with LaTeX (the instructions has to be followed strictly)?
Is this the default behaviour of LaTeX or am i missing something (most probably) perhaps something (margin,linewidth,text alignment) ?
Thanks in advance...
\usepackage{mathptmx}or\usepackage{txfonts}, as well as the command\usepackage[margin=2cm]{geometry}, to the preamble of your LaTeX document, and the output should be quite similar to what's produced by other software packages (as long as they use the same fonts, margin settings, etc.). – Mico Jul 16 '12 at 21:36\usepackage[margin=2.5cm]{geometry}(or=1in) to mimic default margins of word processing software. – jon Jul 16 '12 at 22:072cm; of course, I may be wrong. However, settingmargin=2cmcertainly succeeds almost completely in replicating the LibreOffice output with LaTeX and eithertxfontsormathptmx, and that's why I suggested it in my earlier comment. – Mico Jul 16 '12 at 23:231in. (I've never used LibreOffice to write anything; and the last time I did in Word was when OpenOffice was 2.0....) – jon Jul 17 '12 at 0:13