Solve Latex Problem - Chapter 1: Unbiased Estimators

  • Context: LaTeX 
  • Thread starter Thread starter sara_87
  • Start date Start date
  • Tags Tags
    Latex
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
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.