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 roman
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 roman
1
Welcome to TeX.SE.
– Sebastiano
Mar 12 at 7:44
Could it be that that should be a legal paper? There are some questions about that here ...
– Kurt
Mar 12 at 7:52
@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
Mar 12 at 12:50
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 roman
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 roman
sectioning numbering roman
edited Mar 13 at 19:12
Salim Bou
11.5k11442
11.5k11442
asked Mar 12 at 7:42
hoodiehoodie
111
111
1
Welcome to TeX.SE.
– Sebastiano
Mar 12 at 7:44
Could it be that that should be a legal paper? There are some questions about that here ...
– Kurt
Mar 12 at 7:52
@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
Mar 12 at 12:50
add a comment |
1
Welcome to TeX.SE.
– Sebastiano
Mar 12 at 7:44
Could it be that that should be a legal paper? There are some questions about that here ...
– Kurt
Mar 12 at 7:52
@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
Mar 12 at 12:50
1
1
Welcome to TeX.SE.
– Sebastiano
Mar 12 at 7:44
Welcome to TeX.SE.
– Sebastiano
Mar 12 at 7:44
Could it be that that should be a legal paper? There are some questions about that here ...
– Kurt
Mar 12 at 7:52
Could it be that that should be a legal paper? There are some questions about that here ...
– Kurt
Mar 12 at 7:52
@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
Mar 12 at 12:50
@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
Mar 12 at 12:50
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
Mar 12 at 11:59
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
I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!
– hoodie
Mar 12 at 12:01
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
});
}
});
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
Mar 12 at 11:59
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
Mar 12 at 11:59
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 Mar 12 at 9:09
Ulrich DiezUlrich Diez
5,520619
5,520619
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
Mar 12 at 11:59
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
Mar 12 at 11:59
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
Mar 12 at 11:59
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
Mar 12 at 11:59
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
I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!
– hoodie
Mar 12 at 12:01
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
I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!
– hoodie
Mar 12 at 12:01
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
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
edited Mar 12 at 9:16
answered Mar 12 at 9:11
learnTeXlearnTeX
184
184
I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!
– hoodie
Mar 12 at 12:01
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
Mar 12 at 12:01
I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!
– hoodie
Mar 12 at 12:01
I didn't know there was a way. I thought only 'paragraph' could come after 'subsubsection'. Thank you very much for your answer!
– hoodie
Mar 12 at 12:01
add a comment |
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
Mar 12 at 7:44
Could it be that that should be a legal paper? There are some questions about that here ...
– Kurt
Mar 12 at 7:52
@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
Mar 12 at 12:50