I want put brackets at the beginning and end of a theorem similar following example.
But I don't know what changes must be done in following code.[Hint: The eigenvectors of A can be used to determine two columns of C.]
Code: Select all
\documentclass[12pt,a4paper]{book}
\usepackage{mathtools}
\usepackage{amssymb,amsthm}
\newtheoremstyle{Hint}
{3pt}
{3pt}
{}
{1cm}
{\bf}
{:}
{0.5em}
{}
\theoremstyle{Hint}
\newtheorem*{Hint}{Hint}
\begin{document}
\begin{Hint}
The eigenvectors of A can be used to determine two columns of C.
\end{Hint}
\end{document}