2.3 Title section
my text my text my text my text
2.3.1 Title subsection
my text my text my text my text
2.3.1.1 Title subsubsection
my text my text my text my text
2.3.1.1.1 Title paragraph\\
my text my text my text my text
2.3.1.1.1.1 Title subparagraph\\
my text my text my text my text
How do I "no indent" the my text 2.3.1.1.1 paragraph? (i have tried with \noindent but not working).
how do I align the subparagraph title (2.3.1.1.1.1) with the others, and remove the my text indent?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
which documentclass do you use? Can you provida a minimal working example?
You could use renewcommand to change the definition of \subparagraph that comes with your documentclass.
\documentclass[11pt,a4paper,oneside,openright]{report}
\usepackage{fancyhdr}
\usepackage[scriptsize]{caption2}
\setlength{\paperwidth}{16cm}
\setlength{\paperheight}{24cm}
\setlength{\oddsidemargin} {2. cm}
\setlength{\evensidemargin} {2. cm}
\addtolength{\oddsidemargin} {-0.4 cm}
\addtolength{\evensidemargin} {-0.4 cm}
\linespread{1.3}
\renewcommand{\captionfont}{\normalfont \sffamily \itshape \small}
\pagestyle{empty}
\sloppy
\setcounter{secnumdepth}{6}
\begin{document}
\pagestyle{fancy}
\fancyfoot{}
\renewcommand{\chaptermark}[1]{\markboth{\chaptername\ \thechapter.\ #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[RE]{\bfseries\leftmark}
\fancyhead[LO]{\bfseries\rightmark}
\renewcommand{\headrulewidth}{0.3pt}
\chapter{Title}
\thispagestyle{empty}
\section{Section}
this is may text this is may text this is may text this is may text
this is may text this is may text this is may text this is may text
\subsection{Sub Section}
this is may text this is may text this is may text this is may text
this is may text this is may text this is may text this is may text
\subsubsection{Sub Sub Section}
this is may text this is may text this is may text this is may text
this is may text this is may text this is may text this is may text
\paragraph{Paragraph\\}
NEED TO REMOVE THIS INDENT this is may text this is may text this is may text this is may text
this is may text this is may text this is may text this is may text
\subparagraph{Sub Paragraph (NO INDENT)\\}
NEED TO ALIGN THIS this is may text this is may text this is may text this is may text
this is may text this is may text this is may text this is may text
\end{document}
Just to complement the answer of Stefan_K, to change the page layout you can use the geometry package, and you can use the setspace package to modify the inter-line spacing.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p