Code: Select all
Definitions:
\begin{itemize}
\item Functional requirement:
\item Non-functional requirement:
\end{itemize}
Abbreviations:
\begin{itemize}
\item FR: Functional requirement
\item NFR: Non-functional requirement
\end{itemize}
Code: Select all
Definitions:
\begin{itemize}
\item Functional requirement:
\item Non-functional requirement:
\end{itemize}
Abbreviations:
\begin{itemize}
\item FR: Functional requirement
\item NFR: Non-functional requirement
\end{itemize}
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
\parindent
because it follows a blank line in the source code which introduces a new paragraph. The term "Definitions:" is not indented because it probably directly follows a heading (chapter, section, …). If you do not want that indentation, either delete the blank line or comment it (by simply inserting %
).
Code: Select all
\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
\section{Foo}
Definitions:
\begin{itemize}
\item Functional requirement:
\item Non-functional requirement:
\end{itemize}
%
Abbreviations:
\begin{itemize}
\item FR: Functional requirement
\item NFR: Non-functional requirement
\end{itemize}
\end{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