My latex file is:
\title{\large\textbf{Optimizarea rela\c tiei dintre structur\u a \c si comportament \^in modelarea UML}}
\author{
Sorin Oltean \\
\textit{Universitatea Transilvania din Bra\c sov} \\
\small\textit{[email protected], [email protected]} \\
\small Tel.: 0752/314288
}
\documentclass[12pt]{article}
\begin{document}
\maketitle
\renewcommand\abstractname{\textit{\textbf{Abstract}}}
\begin{abstract}
Something..... text.........
\end{abstract}\\\
\textbf{Cuvinte cheie:} \textit{sistem, structur\u a, comportament, UML}
\section{Introducere}
\paragraph{ }
Para11.............
\paragraph{ }
Para2......
\bibliographystyle{abbrv}
\bibliography{main}
\end{document}
After para1, i wanna start a new paragraph, but between the paragraphs there is a blank line, how can i start the 2nd paragraph below the 1st one, without that blank space? Also, how can i define the margins (top, down, left, right) of the document? There is too much space from the left, right, top and down, i wanna just 2cm space from the left and right, and 3cm from the top and down. Sorry for my bad english.. Also how can i specify the font name and size of the document?
Thanks!
I see you make several mistakes that are typical for beginners:
article
, report
, book
), they are too inflexible. Use the KOMA-Script classes (scrartcl
, scrreprt
, scrbook
) or the memoir
class instead.\title
or \abstractname
; use the formatting commands that your document class provides.\paragraph
is a sectioning commands that creates a heading; use blank lines to separate simple text paragraphs.inputenc
package (only necessary in the case of pdfTeX) so that you can enter non-ASCII characters directly.\documentclass
command must come first.geometry
package unless you have very specific and unavoidable requirements.parskip
package; modern document classes already include its functionality; and normally, paragraphs should be marked by indents, not by vertical space, so no changes to the default are required.fullpage
package, it's completely outdated.