سلام
اگر میخواهید سبک شمارهی قضیه بولد شود از ساختار زیر از بستهی amsthm
کمک بگیرید:
\renewcommand\thetheorem{{\bfseries\thesection.\arabic{theorem}}}
و اگر میخواهید علاوه بر خواستهی بالا کلمهی قضیه نیز قید شود از تغییر ساختار \autoref
زیر از بستهی hyperref
کمک بگیرید:
\renewcommand{\theoremautorefname}{\textbf{Theorem}}
از نمونهی زیر استفاده کنید:
\documentclass{article}
\usepackage{amsmath,amsthm,verbatim,amssymb,amsfonts,amscd, graphicx}
\usepackage[pagebackref=false,colorlinks,linkcolor=blue,citecolor=magenta]{hyperref}
%\newtheorem{theorem}{\textit{Theorem}}[section]
\newtheorem{theorem}{Theorem}[section]
%\newtheorem{theorem}{\textit{Theorem}}
\newtheorem{lemma}[theorem]{Lemma}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{xca}[theorem]{Exercise}
\newtheorem{proposition}[theorem]{Proposition}
\theoremstyle{remark}
\newtheorem{remark}[theorem]{Remark}
%\renewcommand{\theoremautorefname}{\textbf{\theoremautorefname}}
\renewcommand{\theoremautorefname}{\textbf{Theorem}}
\numberwithin{equation}{section}
\renewcommand\thetheorem{{\bfseries\thesection.\arabic{theorem}}}
\begin{document}\noindent
Text Text Text Text Text Text Text Text
\begin{theorem}[\textbf{Thales' theorem}]\label{n1}
Text Text Text Text Text Text Text Text
\end{theorem}\noindent
According to the theorem
\ref{n1} we have shown...
\\
According to the theorem
\autoref{n1} we have shown...
\end{document}
خروجی شما با تکلایو 2018 مطابق زیر است:
از امکانات بستهی
\usepackage{cleveref}
نیز میتوانید برای تنوع بیشتر کمک بگیرید.
پرسش شما نیز فایل کمینه نداشت.
موفق باشید.