problems with caption in LaTeX [duplicate]Add notes under the tableMaking nice tablesCaption issue with...

How can I fix this gap between bookcases I made?

Is "plugging out" electronic devices an American expression?

How to manage monthly salary

Is Social Media Science Fiction?

Information to fellow intern about hiring?

Pristine Bit Checking

New order #4: World

Email Account under attack (really) - anything I can do?

Could a US political party gain complete control over the government by removing checks & balances?

What is it called when one voice type sings a 'solo'?

How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)

Where else does the Shulchan Aruch quote an authority by name?

Does the average primeness of natural numbers tend to zero?

What is GPS' 19 year rollover and does it present a cybersecurity issue?

Is there any use for defining additional entity types in a SOQL FROM clause?

Can a planet have a different gravitational pull depending on its location in orbit around its sun?

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

Is it legal to have the "// (c) 2019 John Smith" header in all files when there are hundreds of contributors?

Is there a name of the flying bionic bird?

Is it wise to hold on to stock that has plummeted and then stabilized?

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

Lied on resume at previous job

Was there ever an axiom rendered a theorem?

What are the advantages and disadvantages of running one shots compared to campaigns?



problems with caption in LaTeX [duplicate]


Add notes under the tableMaking nice tablesCaption issue with tufte-latex and ctableTikZ node causing problems inside a captionSeveral caption problems in longtable and tabularyCaption figure in LatexLongtable and figure caption problemsbeamerarticle and minor problems with captionProblems with captionsproblems with tables in latexProblems with formatting a table in LaTeXLatex Figure caption













2
















This question already has an answer here:




  • Add notes under the table

    3 answers



  • Making nice tables

    4 answers




The caption command in the end posts a caption that says "Table 2: (my text)", even though it is only my FIRST table. I want it to say "Table 1". How?



documentclass[11pt]{article}

usepackage[T1]{fontenc}
usepackage{booktabs}
usepackage{tabularx}

begin{document}

begin{table}[htbp]
centering
caption{Summary statistics of key variables}
label{Table 1}
begin{tabular}{@{}llllll@{}}
toprule
Variable & Obs. & Mean & Std. Dev. & Min & Max \ midrule
Self-Reported Health & 55,332 & 0.593 & 0.275 & 0 & 1 \
High blood pressure* & 55,325 & 0.451 & 0.498 & 0 & 1 \
Diabetes* & 55,319 & 0.143 & 0.350 & 0 & 1 \
Cancer* & 55,271 & 0.093 & 0.291 & 0 & 1 \
Lung problems* & 55,328 & 0.064 & 0.245 & 0 & 1 \
Hearth Problems* & 55,311 & 0.155 & 0.362 & 0 & 1 \
Stroke (ever)* & 55,333 & 0.041 & 0.199 & 0 & 1 \
Psychological problems* & 55,325 & 0.107 & 0.309 & 0 & 1 \
Arthritis* & 55,319 & 0.459 & 0.499 & 0 & 1 \
Obese* & 54,812 & 0,295 & 0,456 & 0 & 1 \
Main health index & 54,617 & 0.814 & 0.095 & 0.362 & 0.930 \
midrule
Male* & 81,520 & 0.484 & 0.500 & 0 & 1 \
Age (years) & 55,352 & 60.9 & 6.22 & 50 & 80 \
Black* & 81,520 & 0.151 & 0.358 & 0 & 1 \
Hispanic* & 81,520 & 0.088 & 0.284 & 0 & 1 \
Married/Partnered* & 55,312 & 0.724 & 0.447 & 0 & 1 \
log(Assets) & 55,352 & 11.1 & 3.32 & 0 & 18.3 \
log(Debt) & 55,352 & 3.06 & 4.11 & 0 & 14.7 \
Age of mother & 55,036 & 75.4 & 13.6 & 16 & 110 \
Age of father & 55,091 & 71.5 & 14.1 & 12 & 116 \
Father alive* & 55,104 & 0.123 & 0.328 & 0 & 1 \
Mother alive* & 55,046 & 0.308 & 0.461 & 0 & 1 \
bottomrule
Vigorous activity +2 times a week & 55,185 & 0.342 & 0.475 & 0 & 1 \
Smokes currently & 55,146 & 0.188 & 0.391 & 0 & 1 \
Self-reported prob(working past age 62) (%) & 29,790 & 47.1 & 39.9 & 0 & 100 \
Self-reported prob(working past age 65) (%) & 33,725 & 27.0 & 34.5 & 0 & 100


end{tabular}
caption{*dummy variable: estimates refer not to averages but to sample proportions}
end{table}


end{document}


So my document displays "Table 2: *dummy variables..." and I want "Table 1: *dummy variables"










share|improve this question









New contributor




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











marked as duplicate by JouleV, Stefan Pinnow, Arash Esbati, Raaja, Phelype Oleinik 16 hours ago


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.



















  • Welcome to TeX.SE! You have two captions.

    – JouleV
    19 hours ago








  • 1





    Btw +1 for using booktabs and @{} for customizing tables.

    – JouleV
    19 hours ago











  • I see, then how do I add like a footnote to my tables? Not really a footnote more like just some text RIGHT under the table where I for instance explain what *, ** and *** mean.

    – Emil Krabbe
    19 hours ago






  • 5





    Read here: Add notes under the table

    – JouleV
    19 hours ago


















2
















This question already has an answer here:




  • Add notes under the table

    3 answers



  • Making nice tables

    4 answers




The caption command in the end posts a caption that says "Table 2: (my text)", even though it is only my FIRST table. I want it to say "Table 1". How?



documentclass[11pt]{article}

usepackage[T1]{fontenc}
usepackage{booktabs}
usepackage{tabularx}

begin{document}

begin{table}[htbp]
centering
caption{Summary statistics of key variables}
label{Table 1}
begin{tabular}{@{}llllll@{}}
toprule
Variable & Obs. & Mean & Std. Dev. & Min & Max \ midrule
Self-Reported Health & 55,332 & 0.593 & 0.275 & 0 & 1 \
High blood pressure* & 55,325 & 0.451 & 0.498 & 0 & 1 \
Diabetes* & 55,319 & 0.143 & 0.350 & 0 & 1 \
Cancer* & 55,271 & 0.093 & 0.291 & 0 & 1 \
Lung problems* & 55,328 & 0.064 & 0.245 & 0 & 1 \
Hearth Problems* & 55,311 & 0.155 & 0.362 & 0 & 1 \
Stroke (ever)* & 55,333 & 0.041 & 0.199 & 0 & 1 \
Psychological problems* & 55,325 & 0.107 & 0.309 & 0 & 1 \
Arthritis* & 55,319 & 0.459 & 0.499 & 0 & 1 \
Obese* & 54,812 & 0,295 & 0,456 & 0 & 1 \
Main health index & 54,617 & 0.814 & 0.095 & 0.362 & 0.930 \
midrule
Male* & 81,520 & 0.484 & 0.500 & 0 & 1 \
Age (years) & 55,352 & 60.9 & 6.22 & 50 & 80 \
Black* & 81,520 & 0.151 & 0.358 & 0 & 1 \
Hispanic* & 81,520 & 0.088 & 0.284 & 0 & 1 \
Married/Partnered* & 55,312 & 0.724 & 0.447 & 0 & 1 \
log(Assets) & 55,352 & 11.1 & 3.32 & 0 & 18.3 \
log(Debt) & 55,352 & 3.06 & 4.11 & 0 & 14.7 \
Age of mother & 55,036 & 75.4 & 13.6 & 16 & 110 \
Age of father & 55,091 & 71.5 & 14.1 & 12 & 116 \
Father alive* & 55,104 & 0.123 & 0.328 & 0 & 1 \
Mother alive* & 55,046 & 0.308 & 0.461 & 0 & 1 \
bottomrule
Vigorous activity +2 times a week & 55,185 & 0.342 & 0.475 & 0 & 1 \
Smokes currently & 55,146 & 0.188 & 0.391 & 0 & 1 \
Self-reported prob(working past age 62) (%) & 29,790 & 47.1 & 39.9 & 0 & 100 \
Self-reported prob(working past age 65) (%) & 33,725 & 27.0 & 34.5 & 0 & 100


end{tabular}
caption{*dummy variable: estimates refer not to averages but to sample proportions}
end{table}


end{document}


So my document displays "Table 2: *dummy variables..." and I want "Table 1: *dummy variables"










share|improve this question









New contributor




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











marked as duplicate by JouleV, Stefan Pinnow, Arash Esbati, Raaja, Phelype Oleinik 16 hours ago


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.



















  • Welcome to TeX.SE! You have two captions.

    – JouleV
    19 hours ago








  • 1





    Btw +1 for using booktabs and @{} for customizing tables.

    – JouleV
    19 hours ago











  • I see, then how do I add like a footnote to my tables? Not really a footnote more like just some text RIGHT under the table where I for instance explain what *, ** and *** mean.

    – Emil Krabbe
    19 hours ago






  • 5





    Read here: Add notes under the table

    – JouleV
    19 hours ago
















2












2








2









This question already has an answer here:




  • Add notes under the table

    3 answers



  • Making nice tables

    4 answers




The caption command in the end posts a caption that says "Table 2: (my text)", even though it is only my FIRST table. I want it to say "Table 1". How?



documentclass[11pt]{article}

usepackage[T1]{fontenc}
usepackage{booktabs}
usepackage{tabularx}

begin{document}

begin{table}[htbp]
centering
caption{Summary statistics of key variables}
label{Table 1}
begin{tabular}{@{}llllll@{}}
toprule
Variable & Obs. & Mean & Std. Dev. & Min & Max \ midrule
Self-Reported Health & 55,332 & 0.593 & 0.275 & 0 & 1 \
High blood pressure* & 55,325 & 0.451 & 0.498 & 0 & 1 \
Diabetes* & 55,319 & 0.143 & 0.350 & 0 & 1 \
Cancer* & 55,271 & 0.093 & 0.291 & 0 & 1 \
Lung problems* & 55,328 & 0.064 & 0.245 & 0 & 1 \
Hearth Problems* & 55,311 & 0.155 & 0.362 & 0 & 1 \
Stroke (ever)* & 55,333 & 0.041 & 0.199 & 0 & 1 \
Psychological problems* & 55,325 & 0.107 & 0.309 & 0 & 1 \
Arthritis* & 55,319 & 0.459 & 0.499 & 0 & 1 \
Obese* & 54,812 & 0,295 & 0,456 & 0 & 1 \
Main health index & 54,617 & 0.814 & 0.095 & 0.362 & 0.930 \
midrule
Male* & 81,520 & 0.484 & 0.500 & 0 & 1 \
Age (years) & 55,352 & 60.9 & 6.22 & 50 & 80 \
Black* & 81,520 & 0.151 & 0.358 & 0 & 1 \
Hispanic* & 81,520 & 0.088 & 0.284 & 0 & 1 \
Married/Partnered* & 55,312 & 0.724 & 0.447 & 0 & 1 \
log(Assets) & 55,352 & 11.1 & 3.32 & 0 & 18.3 \
log(Debt) & 55,352 & 3.06 & 4.11 & 0 & 14.7 \
Age of mother & 55,036 & 75.4 & 13.6 & 16 & 110 \
Age of father & 55,091 & 71.5 & 14.1 & 12 & 116 \
Father alive* & 55,104 & 0.123 & 0.328 & 0 & 1 \
Mother alive* & 55,046 & 0.308 & 0.461 & 0 & 1 \
bottomrule
Vigorous activity +2 times a week & 55,185 & 0.342 & 0.475 & 0 & 1 \
Smokes currently & 55,146 & 0.188 & 0.391 & 0 & 1 \
Self-reported prob(working past age 62) (%) & 29,790 & 47.1 & 39.9 & 0 & 100 \
Self-reported prob(working past age 65) (%) & 33,725 & 27.0 & 34.5 & 0 & 100


end{tabular}
caption{*dummy variable: estimates refer not to averages but to sample proportions}
end{table}


end{document}


So my document displays "Table 2: *dummy variables..." and I want "Table 1: *dummy variables"










share|improve this question









New contributor




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













This question already has an answer here:




  • Add notes under the table

    3 answers



  • Making nice tables

    4 answers




The caption command in the end posts a caption that says "Table 2: (my text)", even though it is only my FIRST table. I want it to say "Table 1". How?



documentclass[11pt]{article}

usepackage[T1]{fontenc}
usepackage{booktabs}
usepackage{tabularx}

begin{document}

begin{table}[htbp]
centering
caption{Summary statistics of key variables}
label{Table 1}
begin{tabular}{@{}llllll@{}}
toprule
Variable & Obs. & Mean & Std. Dev. & Min & Max \ midrule
Self-Reported Health & 55,332 & 0.593 & 0.275 & 0 & 1 \
High blood pressure* & 55,325 & 0.451 & 0.498 & 0 & 1 \
Diabetes* & 55,319 & 0.143 & 0.350 & 0 & 1 \
Cancer* & 55,271 & 0.093 & 0.291 & 0 & 1 \
Lung problems* & 55,328 & 0.064 & 0.245 & 0 & 1 \
Hearth Problems* & 55,311 & 0.155 & 0.362 & 0 & 1 \
Stroke (ever)* & 55,333 & 0.041 & 0.199 & 0 & 1 \
Psychological problems* & 55,325 & 0.107 & 0.309 & 0 & 1 \
Arthritis* & 55,319 & 0.459 & 0.499 & 0 & 1 \
Obese* & 54,812 & 0,295 & 0,456 & 0 & 1 \
Main health index & 54,617 & 0.814 & 0.095 & 0.362 & 0.930 \
midrule
Male* & 81,520 & 0.484 & 0.500 & 0 & 1 \
Age (years) & 55,352 & 60.9 & 6.22 & 50 & 80 \
Black* & 81,520 & 0.151 & 0.358 & 0 & 1 \
Hispanic* & 81,520 & 0.088 & 0.284 & 0 & 1 \
Married/Partnered* & 55,312 & 0.724 & 0.447 & 0 & 1 \
log(Assets) & 55,352 & 11.1 & 3.32 & 0 & 18.3 \
log(Debt) & 55,352 & 3.06 & 4.11 & 0 & 14.7 \
Age of mother & 55,036 & 75.4 & 13.6 & 16 & 110 \
Age of father & 55,091 & 71.5 & 14.1 & 12 & 116 \
Father alive* & 55,104 & 0.123 & 0.328 & 0 & 1 \
Mother alive* & 55,046 & 0.308 & 0.461 & 0 & 1 \
bottomrule
Vigorous activity +2 times a week & 55,185 & 0.342 & 0.475 & 0 & 1 \
Smokes currently & 55,146 & 0.188 & 0.391 & 0 & 1 \
Self-reported prob(working past age 62) (%) & 29,790 & 47.1 & 39.9 & 0 & 100 \
Self-reported prob(working past age 65) (%) & 33,725 & 27.0 & 34.5 & 0 & 100


end{tabular}
caption{*dummy variable: estimates refer not to averages but to sample proportions}
end{table}


end{document}


So my document displays "Table 2: *dummy variables..." and I want "Table 1: *dummy variables"





This question already has an answer here:




  • Add notes under the table

    3 answers



  • Making nice tables

    4 answers








tables captions






share|improve this question









New contributor




Emil Krabbe 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




Emil Krabbe 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 19 hours ago







Emil Krabbe













New contributor




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









asked 19 hours ago









Emil KrabbeEmil Krabbe

112




112




New contributor




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





New contributor





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






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




marked as duplicate by JouleV, Stefan Pinnow, Arash Esbati, Raaja, Phelype Oleinik 16 hours ago


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









marked as duplicate by JouleV, Stefan Pinnow, Arash Esbati, Raaja, Phelype Oleinik 16 hours ago


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.















  • Welcome to TeX.SE! You have two captions.

    – JouleV
    19 hours ago








  • 1





    Btw +1 for using booktabs and @{} for customizing tables.

    – JouleV
    19 hours ago











  • I see, then how do I add like a footnote to my tables? Not really a footnote more like just some text RIGHT under the table where I for instance explain what *, ** and *** mean.

    – Emil Krabbe
    19 hours ago






  • 5





    Read here: Add notes under the table

    – JouleV
    19 hours ago





















  • Welcome to TeX.SE! You have two captions.

    – JouleV
    19 hours ago








  • 1





    Btw +1 for using booktabs and @{} for customizing tables.

    – JouleV
    19 hours ago











  • I see, then how do I add like a footnote to my tables? Not really a footnote more like just some text RIGHT under the table where I for instance explain what *, ** and *** mean.

    – Emil Krabbe
    19 hours ago






  • 5





    Read here: Add notes under the table

    – JouleV
    19 hours ago



















Welcome to TeX.SE! You have two captions.

– JouleV
19 hours ago







Welcome to TeX.SE! You have two captions.

– JouleV
19 hours ago






1




1





Btw +1 for using booktabs and @{} for customizing tables.

– JouleV
19 hours ago





Btw +1 for using booktabs and @{} for customizing tables.

– JouleV
19 hours ago













I see, then how do I add like a footnote to my tables? Not really a footnote more like just some text RIGHT under the table where I for instance explain what *, ** and *** mean.

– Emil Krabbe
19 hours ago





I see, then how do I add like a footnote to my tables? Not really a footnote more like just some text RIGHT under the table where I for instance explain what *, ** and *** mean.

– Emil Krabbe
19 hours ago




5




5





Read here: Add notes under the table

– JouleV
19 hours ago







Read here: Add notes under the table

– JouleV
19 hours ago












0






active

oldest

votes

















0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes

Popular posts from this blog

Paper upload error, “Upload failed: The top margin is 0.715 in on page 3, which is below the required...

Emraan Hashmi Filmografia | Linki zewnętrzne | Menu nawigacyjneGulshan GroverGulshan...

How can I write this formula?newline and italics added with leqWhy does widehat behave differently if I...