Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage{fullpage}
\usepackage{latexsym,amsmath,amssymb}
\usepackage{graphicx}
\begin{document}
......
Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage{fullpage}
\usepackage{latexsym,amsmath,amssymb}
\usepackage{graphicx}
\begin{document}
......
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\addtolength{\parskip}{\baselineskip}
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[centering,includeheadfoot,margin=3cm]{geometry}
\usepackage{blindtext}
\begin{document}
\blindtext
\smallskip
\blindtext
\medskip
\blindtext
\bigskip
\blindtext
\end{document}Thanks, man. The way you suggested works pretty well. Thanks, again.frabjous wrote:You could try:
...right before \begin{document}.Code: Select all
\addtolength{\parskip}{\baselineskip}
Thorsten,localghost wrote:I would be very careful with the length \parskip. It affects other parts of the document where this might not be desired. The parskip package prevents such undesired effects.
In my opinion an indentation and a blank line in combination do not make sense. There should only be the one or the other. You can add several spaces between paragraphs.These lengths are rubber lengths and can be stretched or compressed. But with space between paragraphs you should set the length \parindent to zero.Code: Select all
\documentclass[11pt,a4paper,english]{article} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \usepackage{babel} \usepackage[centering,includeheadfoot,margin=3cm]{geometry} \usepackage{blindtext} \begin{document} \blindtext \smallskip \blindtext \medskip \blindtext \bigskip \blindtext \end{document}
Best regards
Thorsten
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis