Text FormattingTheorem-like Environments with ":" at the End

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
bkarpuz
Posts: 124
Joined: Thu Dec 18, 2008 4:53 pm

Theorem-like Environments with ":" at the End

Post by bkarpuz »

Dear LC members,

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}
Thank you.
bkarpuz

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Theorem-like Environments with ":" at the End

Post by localghost »

I think that Section 4.3 of the amsthm manual will help you on in this regard.


Thorsten
bkarpuz
Posts: 124
Joined: Thu Dec 18, 2008 4:53 pm

Theorem-like Environments with ":" at the End

Post by bkarpuz »

localghost wrote:I think that Section 4.3 of the amsthm manual will help you on in this regard.


Thorsten
This is of great help again Thorsten! Thanks.
But I want to learn how I can only change Punctuation after theorem head and leave the rest as is? Where can I find the default settings for the styles theorem and definition?

Thanks.
bkarpuz
Post Reply