Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc} % codage moderne des caractères sous Latex
\usepackage{mathptmx} % Police Times
\usepackage[english]{babel}
\usepackage{fancyhdr}
\titleformat{\chapter}[hang]{\bf\huge}{\thechapter}{2pc}{}
\usepackage[nottoc,notlof,notlot]{tocbibind}
\begin{document}
\setcounter{page}{0}
\setlength{\parindent}{0pt}
\thispagestyle{empty}
My page 1
\newpage
\setlength{\parindent}{16pt}
\begin{center}
{\huge\textbf{My title}}\bigskip\\
\textbf{My name}\bigskip\\
\end{center}
\begin{multicols}{2}
\section*{Abstract} My text.\bigskip\\
\bibliographystyle{plain}
\bibliography{bonjour}
\end{multicols}
\end{document}
Here is my code, and what i'm looking for is a way to have "Abstract" and "My text" on the same line in my pdf. Because for the moment after "Abstract" (which is my section title), "My text" is on the next line, i'm trying to have it on the same line.
Thanks
Edit : Perfect Stefan, that's what i was looking for. However, "Abstract" format is now different from a section format (size). You know how to use \paragraph and still having \section typical font ?