Text Formattingindent between two paragraphs

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
feryee
Posts: 20
Joined: Sun Aug 09, 2015 12:57 pm

indent between two paragraphs

Post by feryee »

How can i add 24pt of indent between this two paragraphs? i tried with \par , \\ and \vspace, but it didn't work exactly 24pt. could you plz help me with that?thanks

=====================================================================
In this work, a new FIR RI adaptive filtering algorithm is introduced. This algorithm
has been proposed to overcome some of the difficulties experienced with the
above-mentioned adaptive filters. The approach uses a variable step-size and the
instantaneous value of the autocorrelation matrix in the coefficient update equation
that leads to an improved performance.

Convergence analysis of the algorithm has
been presented. The ensemble-average learning curve of the RI algorithm is derived
and compared with those of the RLS and LMS algorithms. A general fast implementation
technique, which significantly reduces the computational complexity, of
the RI algorithm is presented. A robust version of the RI algorithm, which leads to
an improved performance in impulsive noise environments is presented.
Last edited by cgnieder on Thu Jun 08, 2017 2:37 pm, edited 1 time in total.
Reason: typo in title

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

indent between two paragraphs

Post by Stefan Kottwitz »

Hi,

you could write \\[24pt] to end a line with 24pt vertical white space after it. I would also end the paragraph after that.

Stefan
LaTeX.org admin
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

indent between two paragraphs

Post by cgnieder »

\vspace should work:

Code: Select all

\documentclass{article}
\usepackage{lipsum}

\begin{document}

\lipsum[1]

% no vertical space here

\lipsum[2]

\vspace{24pt}% 24pt of vertical space here

\lipsum[3]

\end{document}
site moderator & package author
Post Reply