Is there any easy way to do the same thing that this code does:
% arara: pdflatex
\documentclass[a4paper,12pt]{report}
\usepackage[inner=0.75in,outer=0.65in,top=0.75in,bottom=0.75in]{geometry}
\usepackage{blindtext}
\usepackage{titlesec}
\makeatletter
\def\@makechapterhead#1{%
\vspace*{5\p@}
{%
\parindent \z@ \raggedleft \normalfont
\ifnum \c@secnumdepth >\m@ne
\if@mainmatter
%\huge\bfseries \@chapapp\space \thechapter
\Large\bfseries \thechapter.\space%
%\par\nobreak
%\vskip 20\p@
\fi
\fi
\interlinepenalty\@M
\Large \bfseries #1\par\nobreak
\vskip 5\p@
}}
\makeatother
\begin{document}
\chapter{Some Text}
\begin{itemize}
\item[1.1] \blindtext
\item[1.2] \blindtext
\end{itemize}
\section{Some More Text...}
\begin{itemize}
\item[1.3] \blindtext
\item[1.4] \blindtext
\end{itemize}
\subsection{Some More Text...}
\begin{itemize}
\item[1.5] \blindtext
\end{itemize}
\end{document}
Please provide some information regarding how to increase the horizontal spacing between the item number and the ..
The indentation for each paragraph is also significant. Should this be done manually?
The requirement of this post can be summarized as:
Paragraph numbering in an ascending order without the effect of sections, etc.
Indentation of the paragraph should be the same
If this can only be done manually as shown, please propose a way to increase the horizontal distance between the paragraph number and the text.
