Numbering Question Help Me!
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?
Thank you!
sectioning numbering arabic roman
New contributor
add a comment |
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?
Thank you!
sectioning numbering arabic roman
New contributor
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
add a comment |
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?
Thank you!
sectioning numbering arabic roman
New contributor
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?
Thank you!
sectioning numbering arabic roman
sectioning numbering arabic roman
New contributor
New contributor
edited 20 hours ago
JouleV
5,07111240
5,07111240
New contributor
asked 21 hours ago
hoodiehoodie
111
111
New contributor
New contributor
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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}
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
add a comment |
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:
The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning
New contributor
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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}
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
add a comment |
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}
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
add a comment |
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}
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}
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
add a comment |
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
add a comment |
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:
The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning
New contributor
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
add a comment |
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:
The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning
New contributor
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
add a comment |
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:
The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning
New contributor
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:
The above reslut achieved can be found in: https://github.com/wanzhenchn/Programming_Assignments_of_Deep_Learning
New contributor
edited 20 hours ago
New contributor
answered 20 hours ago
learnTeXlearnTeX
184
184
New contributor
New contributor
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
add a comment |
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
add a comment |
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.
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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