Let us consider the following example :
\documentclass[12pt,twoside,a4paper]{book}
\usepackage[left=.45in,right=.45in,top=.6in,bottom=.6in]{geometry}
\usepackage[fleqn]{amsmath}
\usepackage{amsfonts}
\usepackage{amsthm,amssymb,graphicx}
\usepackage[all]{xy}
\usepackage{graphicx,wrapfig,tikz}
\usepackage{enumerate}
\usepackage{fancyhdr}
\usetikzlibrary{positioning,decorations.markings}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\fancyhead{}
\fancyfoot{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[LO]{\slshape\leftmark }
\fancyhead[RE]{\slshape Basic Algebraic Topology and its Applications}
\newtheoremstyle{myplain}% name
{3pt}% Space above
{3pt}% Space below
{\itshape}% Body font
{}% Indent amount
{\bfseries}% Theorem head font
{}% Punctuation after theorem head
{.5em}% Space after theorem head
{}% Theorem head spec (can be left empty, meaning `normal')
\theoremstyle{myplain}
\newtheorem{thm}{Theorem}[section]
\newtheorem{prop}[thm]{Proposition}
\newtheorem{defn}[thm]{Definition}
\newtheorem{example}[thm]{Example}
\newtheorem{lemma}[thm]{Lemma}
\newtheoremstyle{mytheoremm}% name
{3pt}% Space above
{3pt}% Space below
{\itshape}% Body font
{}% Indent amount
{\bfseries}% Theorem head font
{.}% Punctuation after theorem head
{.5em}% Space after theorem head
{}% Theorem head spec (can be left empty, meaning `normal')
\theoremstyle{mytheoremm}
\newtheorem{remark}{Remark}
\newtheorem*{remark*}{Remark}
\newtheorem{cor}{Corollary}
\newtheorem*{cor*}{Corollary}
\begin{document}
\setcounter{page}{0}\mbox{}\newpage
\thispagestyle{plain}
\def\chapternum{2}
\setcounter{chapter}{1}
\chapter{Homotopy}
\begin{thm}
Text.,...
\end{thm}
\begin{proof}
Text Text Text Text
\end{proof}
\end{document}
This gives :

But I would like to produce :

i.e., the box should more bold. How can I do so?


\renewcommand{\qedsymbol}{<whatever>}– Werner May 31 '13 at 16:27