My table starts numbering at 2, why?
I have a table that is in scriptsize
and when compile my code numbers itself at 2.2 instead of 2.1. It is intended for my second chapter. Does anyone know what I should do to start numbering this table at 2.1?
Thanks in advance!
begin{table}[h]
centering
scriptsize
label{table:2.1}
setlength{extrarowheight}{2pt}
captionsetup{skip=0.5baselineskip,size=scriptsize}
caption{An overview of meta-competences that enable engineering students to solve the future challenge, based on shortcite{Siddique2013}}
begin{tabular}{ l | l }
textbf{Dim.} & textbf{Description} \
midrule
textbf{MC1} & textbf{The ability to manage information} \
midrule
MC1.1 & To gather, interpret, validate and use information \
MC1.2 & Understand and use quantitative and qualitative information \
MC1.3 & Discard useless information \
midrule
textbf{MC2} & textbf{The ability to manage thinking} \
midrule
MC2.1 & Ability to identify and manage dilemmas associated with the realization of complex, \ & sustainable, socio-techno eco-systems \
MC2.2 & Ability to think across disciplines \
MC2.3 & Holistic thinking, conceptual thinking and switching from divergent and convergent thinking \
MC2.4 & Ability to speculate and to identify research topics worthy of investigation \
MC2.5 & Ability to engage in critical discussion \
MC2.6 & Identify and explore opportunities for developing break-through products, systems or services \
MC2.7 & Ability to think strategically by using both theory and methods \
midrule
textbf{MC3} & textbf{The ability to manage collaboration} \
midrule
MC3.1 & Ability to manage the collaboration process in local and global settings \
MC3.2 & Ability to create new knowledge collaboratively in a diverse team \
MC3.3 & Competence in negotiation \
MC3.4 & Teamwork competence \
midrule
textbf{MC4} & textbf{The ability to manage learning} \
midrule
MC4.1 & Ability to identify the competencies and meta-competencies needed to create value in the engineering world \
MC4.2 & Ability to self-instruct and self-monitor learning \
MC4.3 & Ability to interact with multiple modes of learning \
MC4.4 & Ability to manage a lifetime of learning or lifelong learning \
midrule
textbf{MC5} & textbf{The ability to manage attitude} \
midrule
MC5.1 & Ability to self-motivate \
MC5.2 & Ability to cope with chaos \
MC5.3 & Ability to identify and acknowledge mistakes and unproductive paths; \
MC5.4 & Ability to assess and manage risk taking \
bottomrule
end{tabular}
end{table}
tables numbering
add a comment |
I have a table that is in scriptsize
and when compile my code numbers itself at 2.2 instead of 2.1. It is intended for my second chapter. Does anyone know what I should do to start numbering this table at 2.1?
Thanks in advance!
begin{table}[h]
centering
scriptsize
label{table:2.1}
setlength{extrarowheight}{2pt}
captionsetup{skip=0.5baselineskip,size=scriptsize}
caption{An overview of meta-competences that enable engineering students to solve the future challenge, based on shortcite{Siddique2013}}
begin{tabular}{ l | l }
textbf{Dim.} & textbf{Description} \
midrule
textbf{MC1} & textbf{The ability to manage information} \
midrule
MC1.1 & To gather, interpret, validate and use information \
MC1.2 & Understand and use quantitative and qualitative information \
MC1.3 & Discard useless information \
midrule
textbf{MC2} & textbf{The ability to manage thinking} \
midrule
MC2.1 & Ability to identify and manage dilemmas associated with the realization of complex, \ & sustainable, socio-techno eco-systems \
MC2.2 & Ability to think across disciplines \
MC2.3 & Holistic thinking, conceptual thinking and switching from divergent and convergent thinking \
MC2.4 & Ability to speculate and to identify research topics worthy of investigation \
MC2.5 & Ability to engage in critical discussion \
MC2.6 & Identify and explore opportunities for developing break-through products, systems or services \
MC2.7 & Ability to think strategically by using both theory and methods \
midrule
textbf{MC3} & textbf{The ability to manage collaboration} \
midrule
MC3.1 & Ability to manage the collaboration process in local and global settings \
MC3.2 & Ability to create new knowledge collaboratively in a diverse team \
MC3.3 & Competence in negotiation \
MC3.4 & Teamwork competence \
midrule
textbf{MC4} & textbf{The ability to manage learning} \
midrule
MC4.1 & Ability to identify the competencies and meta-competencies needed to create value in the engineering world \
MC4.2 & Ability to self-instruct and self-monitor learning \
MC4.3 & Ability to interact with multiple modes of learning \
MC4.4 & Ability to manage a lifetime of learning or lifelong learning \
midrule
textbf{MC5} & textbf{The ability to manage attitude} \
midrule
MC5.1 & Ability to self-motivate \
MC5.2 & Ability to cope with chaos \
MC5.3 & Ability to identify and acknowledge mistakes and unproductive paths; \
MC5.4 & Ability to assess and manage risk taking \
bottomrule
end{tabular}
end{table}
tables numbering
3
Not the issue, but a general advice: I'd not label your table 2:1 withlabel{tabel:2.1}
, instead I'd choose something that can't change even if the order of your document should change in the future, something likelabel{tab:metacompetence}
. Also you must uselabel
after thecaption
or (even better) inside the mandatory argument of thecaption
macro.
– Skillmon
Mar 9 at 12:54
1
My best guess is what Skillmon suggests at the end:label
should come aftercaption
. Currentlylabel
picks up the last counter that was stepped up before the table (that might be a subsection or section counter or something else entirely). See also tex.stackexchange.com/q/32325/35864, tex.stackexchange.com/q/7/35864
– moewe
Mar 9 at 13:06
That's good advice guys, noted! However, when I put my label after my caption, the entire caption disappears. When I remove the shortcite{Siddique2013} it also does not work.
– Christiaan
Mar 9 at 13:30
1
label
has to be after (or better, in)`caption
or can not work, but for your main question, post a small complete document that shows the problem. Currently you are including a large tabular that has no effect on the numbering, but are not including any code from earlier in the document that has set the counter to the wrong value, so it is hard to offer any help.
– David Carlisle
Mar 9 at 13:41
Please tell us (a) which document class you employ and (b) which LaTeX packages you load (and with which options).
– Mico
Mar 9 at 15:17
add a comment |
I have a table that is in scriptsize
and when compile my code numbers itself at 2.2 instead of 2.1. It is intended for my second chapter. Does anyone know what I should do to start numbering this table at 2.1?
Thanks in advance!
begin{table}[h]
centering
scriptsize
label{table:2.1}
setlength{extrarowheight}{2pt}
captionsetup{skip=0.5baselineskip,size=scriptsize}
caption{An overview of meta-competences that enable engineering students to solve the future challenge, based on shortcite{Siddique2013}}
begin{tabular}{ l | l }
textbf{Dim.} & textbf{Description} \
midrule
textbf{MC1} & textbf{The ability to manage information} \
midrule
MC1.1 & To gather, interpret, validate and use information \
MC1.2 & Understand and use quantitative and qualitative information \
MC1.3 & Discard useless information \
midrule
textbf{MC2} & textbf{The ability to manage thinking} \
midrule
MC2.1 & Ability to identify and manage dilemmas associated with the realization of complex, \ & sustainable, socio-techno eco-systems \
MC2.2 & Ability to think across disciplines \
MC2.3 & Holistic thinking, conceptual thinking and switching from divergent and convergent thinking \
MC2.4 & Ability to speculate and to identify research topics worthy of investigation \
MC2.5 & Ability to engage in critical discussion \
MC2.6 & Identify and explore opportunities for developing break-through products, systems or services \
MC2.7 & Ability to think strategically by using both theory and methods \
midrule
textbf{MC3} & textbf{The ability to manage collaboration} \
midrule
MC3.1 & Ability to manage the collaboration process in local and global settings \
MC3.2 & Ability to create new knowledge collaboratively in a diverse team \
MC3.3 & Competence in negotiation \
MC3.4 & Teamwork competence \
midrule
textbf{MC4} & textbf{The ability to manage learning} \
midrule
MC4.1 & Ability to identify the competencies and meta-competencies needed to create value in the engineering world \
MC4.2 & Ability to self-instruct and self-monitor learning \
MC4.3 & Ability to interact with multiple modes of learning \
MC4.4 & Ability to manage a lifetime of learning or lifelong learning \
midrule
textbf{MC5} & textbf{The ability to manage attitude} \
midrule
MC5.1 & Ability to self-motivate \
MC5.2 & Ability to cope with chaos \
MC5.3 & Ability to identify and acknowledge mistakes and unproductive paths; \
MC5.4 & Ability to assess and manage risk taking \
bottomrule
end{tabular}
end{table}
tables numbering
I have a table that is in scriptsize
and when compile my code numbers itself at 2.2 instead of 2.1. It is intended for my second chapter. Does anyone know what I should do to start numbering this table at 2.1?
Thanks in advance!
begin{table}[h]
centering
scriptsize
label{table:2.1}
setlength{extrarowheight}{2pt}
captionsetup{skip=0.5baselineskip,size=scriptsize}
caption{An overview of meta-competences that enable engineering students to solve the future challenge, based on shortcite{Siddique2013}}
begin{tabular}{ l | l }
textbf{Dim.} & textbf{Description} \
midrule
textbf{MC1} & textbf{The ability to manage information} \
midrule
MC1.1 & To gather, interpret, validate and use information \
MC1.2 & Understand and use quantitative and qualitative information \
MC1.3 & Discard useless information \
midrule
textbf{MC2} & textbf{The ability to manage thinking} \
midrule
MC2.1 & Ability to identify and manage dilemmas associated with the realization of complex, \ & sustainable, socio-techno eco-systems \
MC2.2 & Ability to think across disciplines \
MC2.3 & Holistic thinking, conceptual thinking and switching from divergent and convergent thinking \
MC2.4 & Ability to speculate and to identify research topics worthy of investigation \
MC2.5 & Ability to engage in critical discussion \
MC2.6 & Identify and explore opportunities for developing break-through products, systems or services \
MC2.7 & Ability to think strategically by using both theory and methods \
midrule
textbf{MC3} & textbf{The ability to manage collaboration} \
midrule
MC3.1 & Ability to manage the collaboration process in local and global settings \
MC3.2 & Ability to create new knowledge collaboratively in a diverse team \
MC3.3 & Competence in negotiation \
MC3.4 & Teamwork competence \
midrule
textbf{MC4} & textbf{The ability to manage learning} \
midrule
MC4.1 & Ability to identify the competencies and meta-competencies needed to create value in the engineering world \
MC4.2 & Ability to self-instruct and self-monitor learning \
MC4.3 & Ability to interact with multiple modes of learning \
MC4.4 & Ability to manage a lifetime of learning or lifelong learning \
midrule
textbf{MC5} & textbf{The ability to manage attitude} \
midrule
MC5.1 & Ability to self-motivate \
MC5.2 & Ability to cope with chaos \
MC5.3 & Ability to identify and acknowledge mistakes and unproductive paths; \
MC5.4 & Ability to assess and manage risk taking \
bottomrule
end{tabular}
end{table}
tables numbering
tables numbering
edited Mar 9 at 12:38
JouleV
6,21121650
6,21121650
asked Mar 9 at 12:36
ChristiaanChristiaan
32
32
3
Not the issue, but a general advice: I'd not label your table 2:1 withlabel{tabel:2.1}
, instead I'd choose something that can't change even if the order of your document should change in the future, something likelabel{tab:metacompetence}
. Also you must uselabel
after thecaption
or (even better) inside the mandatory argument of thecaption
macro.
– Skillmon
Mar 9 at 12:54
1
My best guess is what Skillmon suggests at the end:label
should come aftercaption
. Currentlylabel
picks up the last counter that was stepped up before the table (that might be a subsection or section counter or something else entirely). See also tex.stackexchange.com/q/32325/35864, tex.stackexchange.com/q/7/35864
– moewe
Mar 9 at 13:06
That's good advice guys, noted! However, when I put my label after my caption, the entire caption disappears. When I remove the shortcite{Siddique2013} it also does not work.
– Christiaan
Mar 9 at 13:30
1
label
has to be after (or better, in)`caption
or can not work, but for your main question, post a small complete document that shows the problem. Currently you are including a large tabular that has no effect on the numbering, but are not including any code from earlier in the document that has set the counter to the wrong value, so it is hard to offer any help.
– David Carlisle
Mar 9 at 13:41
Please tell us (a) which document class you employ and (b) which LaTeX packages you load (and with which options).
– Mico
Mar 9 at 15:17
add a comment |
3
Not the issue, but a general advice: I'd not label your table 2:1 withlabel{tabel:2.1}
, instead I'd choose something that can't change even if the order of your document should change in the future, something likelabel{tab:metacompetence}
. Also you must uselabel
after thecaption
or (even better) inside the mandatory argument of thecaption
macro.
– Skillmon
Mar 9 at 12:54
1
My best guess is what Skillmon suggests at the end:label
should come aftercaption
. Currentlylabel
picks up the last counter that was stepped up before the table (that might be a subsection or section counter or something else entirely). See also tex.stackexchange.com/q/32325/35864, tex.stackexchange.com/q/7/35864
– moewe
Mar 9 at 13:06
That's good advice guys, noted! However, when I put my label after my caption, the entire caption disappears. When I remove the shortcite{Siddique2013} it also does not work.
– Christiaan
Mar 9 at 13:30
1
label
has to be after (or better, in)`caption
or can not work, but for your main question, post a small complete document that shows the problem. Currently you are including a large tabular that has no effect on the numbering, but are not including any code from earlier in the document that has set the counter to the wrong value, so it is hard to offer any help.
– David Carlisle
Mar 9 at 13:41
Please tell us (a) which document class you employ and (b) which LaTeX packages you load (and with which options).
– Mico
Mar 9 at 15:17
3
3
Not the issue, but a general advice: I'd not label your table 2:1 with
label{tabel:2.1}
, instead I'd choose something that can't change even if the order of your document should change in the future, something like label{tab:metacompetence}
. Also you must use label
after the caption
or (even better) inside the mandatory argument of the caption
macro.– Skillmon
Mar 9 at 12:54
Not the issue, but a general advice: I'd not label your table 2:1 with
label{tabel:2.1}
, instead I'd choose something that can't change even if the order of your document should change in the future, something like label{tab:metacompetence}
. Also you must use label
after the caption
or (even better) inside the mandatory argument of the caption
macro.– Skillmon
Mar 9 at 12:54
1
1
My best guess is what Skillmon suggests at the end:
label
should come after caption
. Currently label
picks up the last counter that was stepped up before the table (that might be a subsection or section counter or something else entirely). See also tex.stackexchange.com/q/32325/35864, tex.stackexchange.com/q/7/35864– moewe
Mar 9 at 13:06
My best guess is what Skillmon suggests at the end:
label
should come after caption
. Currently label
picks up the last counter that was stepped up before the table (that might be a subsection or section counter or something else entirely). See also tex.stackexchange.com/q/32325/35864, tex.stackexchange.com/q/7/35864– moewe
Mar 9 at 13:06
That's good advice guys, noted! However, when I put my label after my caption, the entire caption disappears. When I remove the shortcite{Siddique2013} it also does not work.
– Christiaan
Mar 9 at 13:30
That's good advice guys, noted! However, when I put my label after my caption, the entire caption disappears. When I remove the shortcite{Siddique2013} it also does not work.
– Christiaan
Mar 9 at 13:30
1
1
label
has to be after (or better, in)` caption
or can not work, but for your main question, post a small complete document that shows the problem. Currently you are including a large tabular that has no effect on the numbering, but are not including any code from earlier in the document that has set the counter to the wrong value, so it is hard to offer any help.– David Carlisle
Mar 9 at 13:41
label
has to be after (or better, in)` caption
or can not work, but for your main question, post a small complete document that shows the problem. Currently you are including a large tabular that has no effect on the numbering, but are not including any code from earlier in the document that has set the counter to the wrong value, so it is hard to offer any help.– David Carlisle
Mar 9 at 13:41
Please tell us (a) which document class you employ and (b) which LaTeX packages you load (and with which options).
– Mico
Mar 9 at 15:17
Please tell us (a) which document class you employ and (b) which LaTeX packages you load (and with which options).
– Mico
Mar 9 at 15:17
add a comment |
0
active
oldest
votes
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%2f478572%2fmy-table-starts-numbering-at-2-why%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f478572%2fmy-table-starts-numbering-at-2-why%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
3
Not the issue, but a general advice: I'd not label your table 2:1 with
label{tabel:2.1}
, instead I'd choose something that can't change even if the order of your document should change in the future, something likelabel{tab:metacompetence}
. Also you must uselabel
after thecaption
or (even better) inside the mandatory argument of thecaption
macro.– Skillmon
Mar 9 at 12:54
1
My best guess is what Skillmon suggests at the end:
label
should come aftercaption
. Currentlylabel
picks up the last counter that was stepped up before the table (that might be a subsection or section counter or something else entirely). See also tex.stackexchange.com/q/32325/35864, tex.stackexchange.com/q/7/35864– moewe
Mar 9 at 13:06
That's good advice guys, noted! However, when I put my label after my caption, the entire caption disappears. When I remove the shortcite{Siddique2013} it also does not work.
– Christiaan
Mar 9 at 13:30
1
label
has to be after (or better, in)`caption
or can not work, but for your main question, post a small complete document that shows the problem. Currently you are including a large tabular that has no effect on the numbering, but are not including any code from earlier in the document that has set the counter to the wrong value, so it is hard to offer any help.– David Carlisle
Mar 9 at 13:41
Please tell us (a) which document class you employ and (b) which LaTeX packages you load (and with which options).
– Mico
Mar 9 at 15:17