I am using memoir with section as chapter style. I want to indent chapter style to the right.
Right now I have:
Chapter 1
Text of first paragraph (first line)
Text of first paragraph (rest of paragraph)
But I want:
Chapter 1
Text of first paragraph (first line)
Text of first paragraph (rest of paragraph)
What parameter should I change?
Edit: Here is MWE:
\documentclass[12pt,a4paper,oneside]{memoir}
\usepackage{indentfirst}
\parindent 1.25cm
\chapterstyle{section}
\secindent\parindent\relax
\renewcommand{\thechapter}{\arabic{chapter}.}
\renewcommand{\thesection}{\thechapter\arabic{section}}
\begin{document}
\chapter{Chapter}
\par
test test test test test
\section{Section}
\par
test test test test test
\end{document}
@Francis If I use your idea it works but for section title!
