Have section numbering use specific strings
up vote
2
down vote
favorite
I am trying to create a document outlining a work breakdown structure. I would like the first section to be numbered "R3" instead of with the number one, the second section to be numbered "R1" instead of the number two, and the third section to be numbered "SPF" instead of the number three.
Beyond the third section, it would be nice if subsequent sections could be numbered starting from four. Subsections, subsubsections, paragraphs, etc., should have the usual arabic numbering.
For example, the 3rd subsubsection of the 1st subsection of the 2nd section would be:
"R1.1.3 Rebuild of the Alu chambers"
Can this be done?
(I know this is the point at which I should share what I have tried, but apart from some fumbling around with fnsymbol I am entirely lost, and am not even sure what to search for.)
sectioning numbering
New contributor
add a comment |
up vote
2
down vote
favorite
I am trying to create a document outlining a work breakdown structure. I would like the first section to be numbered "R3" instead of with the number one, the second section to be numbered "R1" instead of the number two, and the third section to be numbered "SPF" instead of the number three.
Beyond the third section, it would be nice if subsequent sections could be numbered starting from four. Subsections, subsubsections, paragraphs, etc., should have the usual arabic numbering.
For example, the 3rd subsubsection of the 1st subsection of the 2nd section would be:
"R1.1.3 Rebuild of the Alu chambers"
Can this be done?
(I know this is the point at which I should share what I have tried, but apart from some fumbling around with fnsymbol I am entirely lost, and am not even sure what to search for.)
sectioning numbering
New contributor
Welcome to TeX.SE.
– Mico
9 hours ago
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am trying to create a document outlining a work breakdown structure. I would like the first section to be numbered "R3" instead of with the number one, the second section to be numbered "R1" instead of the number two, and the third section to be numbered "SPF" instead of the number three.
Beyond the third section, it would be nice if subsequent sections could be numbered starting from four. Subsections, subsubsections, paragraphs, etc., should have the usual arabic numbering.
For example, the 3rd subsubsection of the 1st subsection of the 2nd section would be:
"R1.1.3 Rebuild of the Alu chambers"
Can this be done?
(I know this is the point at which I should share what I have tried, but apart from some fumbling around with fnsymbol I am entirely lost, and am not even sure what to search for.)
sectioning numbering
New contributor
I am trying to create a document outlining a work breakdown structure. I would like the first section to be numbered "R3" instead of with the number one, the second section to be numbered "R1" instead of the number two, and the third section to be numbered "SPF" instead of the number three.
Beyond the third section, it would be nice if subsequent sections could be numbered starting from four. Subsections, subsubsections, paragraphs, etc., should have the usual arabic numbering.
For example, the 3rd subsubsection of the 1st subsection of the 2nd section would be:
"R1.1.3 Rebuild of the Alu chambers"
Can this be done?
(I know this is the point at which I should share what I have tried, but apart from some fumbling around with fnsymbol I am entirely lost, and am not even sure what to search for.)
sectioning numbering
sectioning numbering
New contributor
New contributor
New contributor
asked 10 hours ago
smolloy
133
133
New contributor
New contributor
Welcome to TeX.SE.
– Mico
9 hours ago
add a comment |
Welcome to TeX.SE.
– Mico
9 hours ago
Welcome to TeX.SE.
– Mico
9 hours ago
Welcome to TeX.SE.
– Mico
9 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
Just use several renewcommand
instructions to modify the appearance of the thesection
macro.
documentclass{article}
begin{document}
%%% First section.
renewcommandthesection{R3}
section{Sec1}
subsection{Sec1 Subsec1}
subsubsection{Sec1 Subsec1 Subsubsec1}
subsubsection{Sec1 Subsec1 Subsubsec2}
subsubsection{Sec1 Subsec1 Subsubsec3}
%% Second section.
renewcommandthesection{R1}
section{Sec2}
subsection{Sec2 Subsec1}
subsubsection{Sec2 Subsec1 Subsubsec1}
subsubsection{Sec2 Subsec1 Subsubsec2}
subsubsection{Rebuild of the Alu chambers}
%% Third section.
renewcommandthesection{SPF} % why not...
section{Sec3}
subsection{Sec3 Subsec1}
subsubsection{Sec3 Subsec1 Subsubsec1}
subsubsection{Sec3 Subsec1 Subsubsec2}
subsubsection{Sec3 Subsec1 Subsubsec3}
%% Fourth section and beyond
renewcommandthesection{arabic{section}} % back to standard setup
section{Sec4}
subsection{Sec4 Subsec1}
subsubsection{Sec4 Subsec1 Subsubsec1}
subsubsection{Sec4 Subsec1 Subsubsec2}
subsubsection{Sec4 Subsec1 Subsubsec3}
section{Sec5}
subsection{Sec5 Subsec1}
subsubsection{Sec5 Subsec1 Subsubsec1}
subsubsection{Sec5 Subsec1 Subsubsec2}
subsubsection{Sec5 Subsec1 Subsubsec3}
end{document}
Exactly what I was looking for. Thanks.
– smolloy
9 hours ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
Just use several renewcommand
instructions to modify the appearance of the thesection
macro.
documentclass{article}
begin{document}
%%% First section.
renewcommandthesection{R3}
section{Sec1}
subsection{Sec1 Subsec1}
subsubsection{Sec1 Subsec1 Subsubsec1}
subsubsection{Sec1 Subsec1 Subsubsec2}
subsubsection{Sec1 Subsec1 Subsubsec3}
%% Second section.
renewcommandthesection{R1}
section{Sec2}
subsection{Sec2 Subsec1}
subsubsection{Sec2 Subsec1 Subsubsec1}
subsubsection{Sec2 Subsec1 Subsubsec2}
subsubsection{Rebuild of the Alu chambers}
%% Third section.
renewcommandthesection{SPF} % why not...
section{Sec3}
subsection{Sec3 Subsec1}
subsubsection{Sec3 Subsec1 Subsubsec1}
subsubsection{Sec3 Subsec1 Subsubsec2}
subsubsection{Sec3 Subsec1 Subsubsec3}
%% Fourth section and beyond
renewcommandthesection{arabic{section}} % back to standard setup
section{Sec4}
subsection{Sec4 Subsec1}
subsubsection{Sec4 Subsec1 Subsubsec1}
subsubsection{Sec4 Subsec1 Subsubsec2}
subsubsection{Sec4 Subsec1 Subsubsec3}
section{Sec5}
subsection{Sec5 Subsec1}
subsubsection{Sec5 Subsec1 Subsubsec1}
subsubsection{Sec5 Subsec1 Subsubsec2}
subsubsection{Sec5 Subsec1 Subsubsec3}
end{document}
Exactly what I was looking for. Thanks.
– smolloy
9 hours ago
add a comment |
up vote
0
down vote
accepted
Just use several renewcommand
instructions to modify the appearance of the thesection
macro.
documentclass{article}
begin{document}
%%% First section.
renewcommandthesection{R3}
section{Sec1}
subsection{Sec1 Subsec1}
subsubsection{Sec1 Subsec1 Subsubsec1}
subsubsection{Sec1 Subsec1 Subsubsec2}
subsubsection{Sec1 Subsec1 Subsubsec3}
%% Second section.
renewcommandthesection{R1}
section{Sec2}
subsection{Sec2 Subsec1}
subsubsection{Sec2 Subsec1 Subsubsec1}
subsubsection{Sec2 Subsec1 Subsubsec2}
subsubsection{Rebuild of the Alu chambers}
%% Third section.
renewcommandthesection{SPF} % why not...
section{Sec3}
subsection{Sec3 Subsec1}
subsubsection{Sec3 Subsec1 Subsubsec1}
subsubsection{Sec3 Subsec1 Subsubsec2}
subsubsection{Sec3 Subsec1 Subsubsec3}
%% Fourth section and beyond
renewcommandthesection{arabic{section}} % back to standard setup
section{Sec4}
subsection{Sec4 Subsec1}
subsubsection{Sec4 Subsec1 Subsubsec1}
subsubsection{Sec4 Subsec1 Subsubsec2}
subsubsection{Sec4 Subsec1 Subsubsec3}
section{Sec5}
subsection{Sec5 Subsec1}
subsubsection{Sec5 Subsec1 Subsubsec1}
subsubsection{Sec5 Subsec1 Subsubsec2}
subsubsection{Sec5 Subsec1 Subsubsec3}
end{document}
Exactly what I was looking for. Thanks.
– smolloy
9 hours ago
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
Just use several renewcommand
instructions to modify the appearance of the thesection
macro.
documentclass{article}
begin{document}
%%% First section.
renewcommandthesection{R3}
section{Sec1}
subsection{Sec1 Subsec1}
subsubsection{Sec1 Subsec1 Subsubsec1}
subsubsection{Sec1 Subsec1 Subsubsec2}
subsubsection{Sec1 Subsec1 Subsubsec3}
%% Second section.
renewcommandthesection{R1}
section{Sec2}
subsection{Sec2 Subsec1}
subsubsection{Sec2 Subsec1 Subsubsec1}
subsubsection{Sec2 Subsec1 Subsubsec2}
subsubsection{Rebuild of the Alu chambers}
%% Third section.
renewcommandthesection{SPF} % why not...
section{Sec3}
subsection{Sec3 Subsec1}
subsubsection{Sec3 Subsec1 Subsubsec1}
subsubsection{Sec3 Subsec1 Subsubsec2}
subsubsection{Sec3 Subsec1 Subsubsec3}
%% Fourth section and beyond
renewcommandthesection{arabic{section}} % back to standard setup
section{Sec4}
subsection{Sec4 Subsec1}
subsubsection{Sec4 Subsec1 Subsubsec1}
subsubsection{Sec4 Subsec1 Subsubsec2}
subsubsection{Sec4 Subsec1 Subsubsec3}
section{Sec5}
subsection{Sec5 Subsec1}
subsubsection{Sec5 Subsec1 Subsubsec1}
subsubsection{Sec5 Subsec1 Subsubsec2}
subsubsection{Sec5 Subsec1 Subsubsec3}
end{document}
Just use several renewcommand
instructions to modify the appearance of the thesection
macro.
documentclass{article}
begin{document}
%%% First section.
renewcommandthesection{R3}
section{Sec1}
subsection{Sec1 Subsec1}
subsubsection{Sec1 Subsec1 Subsubsec1}
subsubsection{Sec1 Subsec1 Subsubsec2}
subsubsection{Sec1 Subsec1 Subsubsec3}
%% Second section.
renewcommandthesection{R1}
section{Sec2}
subsection{Sec2 Subsec1}
subsubsection{Sec2 Subsec1 Subsubsec1}
subsubsection{Sec2 Subsec1 Subsubsec2}
subsubsection{Rebuild of the Alu chambers}
%% Third section.
renewcommandthesection{SPF} % why not...
section{Sec3}
subsection{Sec3 Subsec1}
subsubsection{Sec3 Subsec1 Subsubsec1}
subsubsection{Sec3 Subsec1 Subsubsec2}
subsubsection{Sec3 Subsec1 Subsubsec3}
%% Fourth section and beyond
renewcommandthesection{arabic{section}} % back to standard setup
section{Sec4}
subsection{Sec4 Subsec1}
subsubsection{Sec4 Subsec1 Subsubsec1}
subsubsection{Sec4 Subsec1 Subsubsec2}
subsubsection{Sec4 Subsec1 Subsubsec3}
section{Sec5}
subsection{Sec5 Subsec1}
subsubsection{Sec5 Subsec1 Subsubsec1}
subsubsection{Sec5 Subsec1 Subsubsec2}
subsubsection{Sec5 Subsec1 Subsubsec3}
end{document}
answered 9 hours ago
Mico
270k30367752
270k30367752
Exactly what I was looking for. Thanks.
– smolloy
9 hours ago
add a comment |
Exactly what I was looking for. Thanks.
– smolloy
9 hours ago
Exactly what I was looking for. Thanks.
– smolloy
9 hours ago
Exactly what I was looking for. Thanks.
– smolloy
9 hours ago
add a comment |
smolloy is a new contributor. Be nice, and check out our Code of Conduct.
smolloy is a new contributor. Be nice, and check out our Code of Conduct.
smolloy is a new contributor. Be nice, and check out our Code of Conduct.
smolloy 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%2f462066%2fhave-section-numbering-use-specific-strings%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
Welcome to TeX.SE.
– Mico
9 hours ago