LaTeX Solve Latex Problem - Chapter 1: Unbiased Estimators

  • Thread starter Thread starter sara_87
  • Start date Start date
  • Tags Tags
    Latex
AI Thread Summary
To achieve the desired formatting of "Chapter 1: Unbiased Estimators" and "1.1 intro" in LaTeX, the document should use the "report" class instead of the "article" class. The correct structure involves using the \chapter command for the main chapter title and the \section command for subsections. This approach ensures that the chapter and section numbering appears correctly. Additionally, a reference to a helpful LaTeX document was provided to assist with formatting.
sara_87
Messages
748
Reaction score
0

Homework Statement



I want to return:

Chapter 1: Unbiased Estimators
1.1 intro

Homework Equations





The Attempt at a Solution



If i do:

\section{Chapter 1: Unbiased estimators}
\subsection{intro}

I get:
1. Chapter 1: Unbiased estimators
1.1 intro

If I do:
Chapter 1: Unbiased estimators
\subsection{intro}

I get:
Chapter 1: Unbiased estimators
0.1 intro


How do i get:

Chapter 1: Unbiased Estimators
1.1 intro

?
 
Physics news on Phys.org
Try
Code:
\documentclass{report}

...

    \chapter{Unbiased Estimators}
    \section{intro}
Make sure to use the "report" class (not "article") when you're using chapters.
 
Thanks, this works nicely.
 
Back
Top