I need to have : at the end of theorems instead of a single dot ..
I found a similar topic but here: http://www.latex-community.org/forum/vi ... 44&t=14755
But I want to apply it to all like theorem, corollary, definition, example, lemma, remark and property.
I thought there might be a better solution.
Bolew, I supply my prembles.
Code: Select all
\documentclass[a4paper,12pt,reqno]{article}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{color}
\usepackage{enumitem}
\usepackage{graphicx}
\usepackage[pdfstartview=FitV]{hyperref}
\usepackage[top=46.9mm,bottom=30mm,left=30mm,right=30mm]{geometry}
\usepackage{harvard}
\usepackage[titles]{tocloft}
%\usepackage[notref,notcite]{showkeys}
\usepackage{lastpage}
\numberwithin{equation}{subsection}
\numberwithin{figure}{subsection}
\numberwithin{table}{subsection}
\newtheorem{theorem}{Teorem}[subsection]
\newtheorem{corollary}[theorem]{Sonu\c{c}}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Tan{\i}m}
\newtheorem{example}[theorem]{\"{O}rnek}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{remark}[theorem]{Uyar{\i}}
\newtheorem{property}[theorem]{\"{O}zellik}
bkarpuz