I have this question: I need to format the \paragraph and \subparagraph like this:
1) First Paragraph
2) 2nd …
a) First subparagraph
…
I used this code:
Code: Select all
\documentclass[letterpaper,12pt,oneside]{book}
\usepackage[spanish,es-lcroman]{babel}
\begin{document}
\setcounter{secnumdepth}{5}
\renewcommand{\theparagraph}{\arabic{paragraph})}
\renewcommand{\thesubparagraph}{\alph{subparagraph})}
\end{document}
1). First Paragraph Text of this paragraph
2). 2nd … Text of this paragraph
a). First subparagraphText of this paragraph
…
So, what can I do to get this dot out? And, how can I get a breakline between the (sub)paragraph's title and the rest of the text? I mean:
1) First Paragraph's title
This is the text of this paragraph
a) First subparagraph's title
This is the text of this subparagraph