Numbering Question Help Me!












2















I don't know if my explanation is correct, but I'd like to make the following documents



This is about numbering.
I'm trying it myself, but... I think this is too difficult for me.
Can you tell me how to make a document like this?



enter image description here



Thank you!










share|improve this question









New contributor




hoodie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    Welcome to TeX.SE.

    – Sebastiano
    21 hours ago











  • Could it be that that should be a legal paper? There are some questions about that here ...

    – Kurt
    21 hours ago











  • @hoodie Can you change the title of your question to reflect what your question is about? In its current the state the title will make it very difficult for future users with the same problem to find your question and the nice answers you got

    – samcarter
    16 hours ago


















2















I don't know if my explanation is correct, but I'd like to make the following documents



This is about numbering.
I'm trying it myself, but... I think this is too difficult for me.
Can you tell me how to make a document like this?



enter image description here



Thank you!










share|improve this question









New contributor




hoodie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    Welcome to TeX.SE.

    – Sebastiano
    21 hours ago











  • Could it be that that should be a legal paper? There are some questions about that here ...

    – Kurt
    21 hours ago











  • @hoodie Can you change the title of your question to reflect what your question is about? In its current the state the title will make it very difficult for future users with the same problem to find your question and the nice answers you got

    – samcarter
    16 hours ago
















2












2








2


0






I don't know if my explanation is correct, but I'd like to make the following documents



This is about numbering.
I'm trying it myself, but... I think this is too difficult for me.
Can you tell me how to make a document like this?



enter image description here



Thank you!










share|improve this question









New contributor




hoodie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I don't know if my explanation is correct, but I'd like to make the following documents



This is about numbering.
I'm trying it myself, but... I think this is too difficult for me.
Can you tell me how to make a document like this?



enter image description here



Thank you!







sectioning numbering arabic roman






share|improve this question









New contributor




hoodie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




hoodie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 20 hours ago









JouleV

5,07111240




5,07111240






New contributor




hoodie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 21 hours ago









hoodiehoodie

111




111




New contributor




hoodie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





hoodie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






hoodie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 1





    Welcome to TeX.SE.

    – Sebastiano
    21 hours ago











  • Could it be that that should be a legal paper? There are some questions about that here ...

    – Kurt
    21 hours ago











  • @hoodie Can you change the title of your question to reflect what your question is about? In its current the state the title will make it very difficult for future users with the same problem to find your question and the nice answers you got

    – samcarter
    16 hours ago
















  • 1





    Welcome to TeX.SE.

    – Sebastiano
    21 hours ago











  • Could it be that that should be a legal paper? There are some questions about that here ...

    – Kurt
    21 hours ago











  • @hoodie Can you change the title of your question to reflect what your question is about? In its current the state the title will make it very difficult for future users with the same problem to find your question and the nice answers you got

    – samcarter
    16 hours ago










1




1





Welcome to TeX.SE.

– Sebastiano
21 hours ago





Welcome to TeX.SE.

– Sebastiano
21 hours ago













Could it be that that should be a legal paper? There are some questions about that here ...

– Kurt
21 hours ago





Could it be that that should be a legal paper? There are some questions about that here ...

– Kurt
21 hours ago













@hoodie Can you change the title of your question to reflect what your question is about? In its current the state the title will make it very difficult for future users with the same problem to find your question and the nice answers you got

– samcarter
16 hours ago







@hoodie Can you change the title of your question to reflect what your question is about? In its current the state the title will make it very difficult for future users with the same problem to find your question and the nice answers you got

– samcarter
16 hours ago












2 Answers
2






active

oldest

votes


















5














As long as indenting of section headings is not an issue, the following could be a starting point:



documentclass[a4paper]{article}
usepackage{hyperref}

setcounter{tocdepth}{5}
setcounter{secnumdepth}{5}

renewcommandthesection{Roman{section}.}
renewcommandthesubsection{arabic{subsection}.}
renewcommandthesubsubsection{(arabic{subsubsection})}
renewcommandtheparagraph{arabic{paragraph})}
renewcommandthesubparagraph{arabic{subparagraph})}

AtBeginDocument{%
csname @ifpackageloadedendcsname{hyperref}{%
% theH... -macros are used ny hyperref's automatic creating of
% anchor-names/destination-names for hyperlinking. Anchor-names/
% destination-names must be unique within the document.
renewcommandtheHsection{thesection}%
renewcommandtheHsubsection{theHsectionthesubsection}%
renewcommandtheHsubsubsection{theHsubsectionthesubsubsection}%
renewcommandtheHparagraph{theHsubsubsectiontheparagraph}%
renewcommandtheHsubparagraph{theHparagraphthesubparagraph}%
}{}%
}%

begin{document}

tableofcontents

section{First Section}
subsection{First Subsection}
subsubsection{First Subsubsection}
paragraph{Paragraph (maybe?)}
paragraph{Paragraph}
paragraph{paragraph}
subsection{Second Subsection}
section{Second Section}

end{document}


enter image description here






share|improve this answer
























  • I don't care about indenting! That's what I wanted! Thanks a lot! I've been working on this all week... I really appreciate the excellent reply.

    – hoodie
    17 hours ago



















1














Of course, you can use paragraph to make a subsubsubsection, code is as follows:



usepackage{titlesec}
setcounter{secnumdepth}{4} % how many sectioning levels to assign numbers to
setcounter{tocdepth}{4} % how many sectioning levels to show in ToC
titleformat{paragraph}
{normalfontnormalsizebfseries}{theparagraph}{1em}{}
titlespacing*{paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
newcommand{subsubsubsection}{paragraph} %define newcommand subsubsubsection


Outcome:



enter image description here



The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning






share|improve this answer










New contributor




learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!

    – hoodie
    17 hours ago











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






hoodie is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479029%2fnumbering-question-help-me%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









5














As long as indenting of section headings is not an issue, the following could be a starting point:



documentclass[a4paper]{article}
usepackage{hyperref}

setcounter{tocdepth}{5}
setcounter{secnumdepth}{5}

renewcommandthesection{Roman{section}.}
renewcommandthesubsection{arabic{subsection}.}
renewcommandthesubsubsection{(arabic{subsubsection})}
renewcommandtheparagraph{arabic{paragraph})}
renewcommandthesubparagraph{arabic{subparagraph})}

AtBeginDocument{%
csname @ifpackageloadedendcsname{hyperref}{%
% theH... -macros are used ny hyperref's automatic creating of
% anchor-names/destination-names for hyperlinking. Anchor-names/
% destination-names must be unique within the document.
renewcommandtheHsection{thesection}%
renewcommandtheHsubsection{theHsectionthesubsection}%
renewcommandtheHsubsubsection{theHsubsectionthesubsubsection}%
renewcommandtheHparagraph{theHsubsubsectiontheparagraph}%
renewcommandtheHsubparagraph{theHparagraphthesubparagraph}%
}{}%
}%

begin{document}

tableofcontents

section{First Section}
subsection{First Subsection}
subsubsection{First Subsubsection}
paragraph{Paragraph (maybe?)}
paragraph{Paragraph}
paragraph{paragraph}
subsection{Second Subsection}
section{Second Section}

end{document}


enter image description here






share|improve this answer
























  • I don't care about indenting! That's what I wanted! Thanks a lot! I've been working on this all week... I really appreciate the excellent reply.

    – hoodie
    17 hours ago
















5














As long as indenting of section headings is not an issue, the following could be a starting point:



documentclass[a4paper]{article}
usepackage{hyperref}

setcounter{tocdepth}{5}
setcounter{secnumdepth}{5}

renewcommandthesection{Roman{section}.}
renewcommandthesubsection{arabic{subsection}.}
renewcommandthesubsubsection{(arabic{subsubsection})}
renewcommandtheparagraph{arabic{paragraph})}
renewcommandthesubparagraph{arabic{subparagraph})}

AtBeginDocument{%
csname @ifpackageloadedendcsname{hyperref}{%
% theH... -macros are used ny hyperref's automatic creating of
% anchor-names/destination-names for hyperlinking. Anchor-names/
% destination-names must be unique within the document.
renewcommandtheHsection{thesection}%
renewcommandtheHsubsection{theHsectionthesubsection}%
renewcommandtheHsubsubsection{theHsubsectionthesubsubsection}%
renewcommandtheHparagraph{theHsubsubsectiontheparagraph}%
renewcommandtheHsubparagraph{theHparagraphthesubparagraph}%
}{}%
}%

begin{document}

tableofcontents

section{First Section}
subsection{First Subsection}
subsubsection{First Subsubsection}
paragraph{Paragraph (maybe?)}
paragraph{Paragraph}
paragraph{paragraph}
subsection{Second Subsection}
section{Second Section}

end{document}


enter image description here






share|improve this answer
























  • I don't care about indenting! That's what I wanted! Thanks a lot! I've been working on this all week... I really appreciate the excellent reply.

    – hoodie
    17 hours ago














5












5








5







As long as indenting of section headings is not an issue, the following could be a starting point:



documentclass[a4paper]{article}
usepackage{hyperref}

setcounter{tocdepth}{5}
setcounter{secnumdepth}{5}

renewcommandthesection{Roman{section}.}
renewcommandthesubsection{arabic{subsection}.}
renewcommandthesubsubsection{(arabic{subsubsection})}
renewcommandtheparagraph{arabic{paragraph})}
renewcommandthesubparagraph{arabic{subparagraph})}

AtBeginDocument{%
csname @ifpackageloadedendcsname{hyperref}{%
% theH... -macros are used ny hyperref's automatic creating of
% anchor-names/destination-names for hyperlinking. Anchor-names/
% destination-names must be unique within the document.
renewcommandtheHsection{thesection}%
renewcommandtheHsubsection{theHsectionthesubsection}%
renewcommandtheHsubsubsection{theHsubsectionthesubsubsection}%
renewcommandtheHparagraph{theHsubsubsectiontheparagraph}%
renewcommandtheHsubparagraph{theHparagraphthesubparagraph}%
}{}%
}%

begin{document}

tableofcontents

section{First Section}
subsection{First Subsection}
subsubsection{First Subsubsection}
paragraph{Paragraph (maybe?)}
paragraph{Paragraph}
paragraph{paragraph}
subsection{Second Subsection}
section{Second Section}

end{document}


enter image description here






share|improve this answer













As long as indenting of section headings is not an issue, the following could be a starting point:



documentclass[a4paper]{article}
usepackage{hyperref}

setcounter{tocdepth}{5}
setcounter{secnumdepth}{5}

renewcommandthesection{Roman{section}.}
renewcommandthesubsection{arabic{subsection}.}
renewcommandthesubsubsection{(arabic{subsubsection})}
renewcommandtheparagraph{arabic{paragraph})}
renewcommandthesubparagraph{arabic{subparagraph})}

AtBeginDocument{%
csname @ifpackageloadedendcsname{hyperref}{%
% theH... -macros are used ny hyperref's automatic creating of
% anchor-names/destination-names for hyperlinking. Anchor-names/
% destination-names must be unique within the document.
renewcommandtheHsection{thesection}%
renewcommandtheHsubsection{theHsectionthesubsection}%
renewcommandtheHsubsubsection{theHsubsectionthesubsubsection}%
renewcommandtheHparagraph{theHsubsubsectiontheparagraph}%
renewcommandtheHsubparagraph{theHparagraphthesubparagraph}%
}{}%
}%

begin{document}

tableofcontents

section{First Section}
subsection{First Subsection}
subsubsection{First Subsubsection}
paragraph{Paragraph (maybe?)}
paragraph{Paragraph}
paragraph{paragraph}
subsection{Second Subsection}
section{Second Section}

end{document}


enter image description here







share|improve this answer












share|improve this answer



share|improve this answer










answered 20 hours ago









Ulrich DiezUlrich Diez

5,390619




5,390619













  • I don't care about indenting! That's what I wanted! Thanks a lot! I've been working on this all week... I really appreciate the excellent reply.

    – hoodie
    17 hours ago



















  • I don't care about indenting! That's what I wanted! Thanks a lot! I've been working on this all week... I really appreciate the excellent reply.

    – hoodie
    17 hours ago

















I don't care about indenting! That's what I wanted! Thanks a lot! I've been working on this all week... I really appreciate the excellent reply.

– hoodie
17 hours ago





I don't care about indenting! That's what I wanted! Thanks a lot! I've been working on this all week... I really appreciate the excellent reply.

– hoodie
17 hours ago











1














Of course, you can use paragraph to make a subsubsubsection, code is as follows:



usepackage{titlesec}
setcounter{secnumdepth}{4} % how many sectioning levels to assign numbers to
setcounter{tocdepth}{4} % how many sectioning levels to show in ToC
titleformat{paragraph}
{normalfontnormalsizebfseries}{theparagraph}{1em}{}
titlespacing*{paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
newcommand{subsubsubsection}{paragraph} %define newcommand subsubsubsection


Outcome:



enter image description here



The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning






share|improve this answer










New contributor




learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!

    – hoodie
    17 hours ago
















1














Of course, you can use paragraph to make a subsubsubsection, code is as follows:



usepackage{titlesec}
setcounter{secnumdepth}{4} % how many sectioning levels to assign numbers to
setcounter{tocdepth}{4} % how many sectioning levels to show in ToC
titleformat{paragraph}
{normalfontnormalsizebfseries}{theparagraph}{1em}{}
titlespacing*{paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
newcommand{subsubsubsection}{paragraph} %define newcommand subsubsubsection


Outcome:



enter image description here



The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning






share|improve this answer










New contributor




learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!

    – hoodie
    17 hours ago














1












1








1







Of course, you can use paragraph to make a subsubsubsection, code is as follows:



usepackage{titlesec}
setcounter{secnumdepth}{4} % how many sectioning levels to assign numbers to
setcounter{tocdepth}{4} % how many sectioning levels to show in ToC
titleformat{paragraph}
{normalfontnormalsizebfseries}{theparagraph}{1em}{}
titlespacing*{paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
newcommand{subsubsubsection}{paragraph} %define newcommand subsubsubsection


Outcome:



enter image description here



The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning






share|improve this answer










New contributor




learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










Of course, you can use paragraph to make a subsubsubsection, code is as follows:



usepackage{titlesec}
setcounter{secnumdepth}{4} % how many sectioning levels to assign numbers to
setcounter{tocdepth}{4} % how many sectioning levels to show in ToC
titleformat{paragraph}
{normalfontnormalsizebfseries}{theparagraph}{1em}{}
titlespacing*{paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
newcommand{subsubsubsection}{paragraph} %define newcommand subsubsubsection


Outcome:



enter image description here



The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning







share|improve this answer










New contributor




learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this answer



share|improve this answer








edited 20 hours ago





















New contributor




learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









answered 20 hours ago









learnTeXlearnTeX

184




184




New contributor




learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!

    – hoodie
    17 hours ago



















  • I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!

    – hoodie
    17 hours ago

















I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!

– hoodie
17 hours ago





I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!

– hoodie
17 hours ago










hoodie is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















hoodie is a new contributor. Be nice, and check out our Code of Conduct.













hoodie is a new contributor. Be nice, and check out our Code of Conduct.












hoodie is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479029%2fnumbering-question-help-me%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Plaza Victoria

In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...