\documentclass[twoside,12pt,leqno]{article}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{amsfonts,graphicx,geometry}
\usepackage{epsfig,cases,subcaption}
\usepackage{chngcntr}
%\counterwithout{section}{chapter}
\counterwithin{table}{section}%{chapter}{part}
\usepackage{url, hyperref}
%Theorem Style%%%%%%%
\numberwithin{equation}{section}
\newtheorem{thm}{Theorem}[section]
\newtheorem{cor}{Corollary}[section]
\newtheorem{lem}{Lemma}[section]
\newtheorem{rem}{Remark}[section]
\newtheorem{exm}{Example}[section]
\newtheorem{dfn}{Definition}[section]
\newtheorem{prop}{Proposition}[section]
%===Theorem=====================================
\geometry{margin=1in}
\newcommand{\subjclass}{\textbf{2010 Mathematics Subject Classification. }}
\newcommand{\keywords}{\textbf{Keywords and phrases. }}
\usepackage{sectsty}
\sectionfont{\fontsize{12}{15}\selectfont}
% ADD THE FOLLOWING COUPLE LINES INTO YOUR PREAMBLE
\let\OLDthebibliography\thebibliography
\renewcommand\thebibliography[1]{
\OLDthebibliography{#1}
\setlength{\parskip}{0pt}
\setlength{\itemsep}{0pt plus 0.3ex}
}
\newcommand{\up}{Uttar Pradesh}
%%%%%%%%%%%%%%section spacing
\usepackage{titlesec}
\titlespacing*{\section}
{0pt}{1ex}{0ex}
\titlespacing*{\subsection}
{0pt}{0ex}{0ex}
\titlespacing*{\subsubsection}
{0pt}{0ex}{0ex}
%%%%%%%%%%%%%%List spacing normal
\usepackage{enumitem}
\setlist[1]{itemsep=-5pt}
%%%%
\setlength{\belowcaptionskip}{-12pt}
%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
sample statement.Sample text. This is a sample statement. Sample text. This is a sample statement. Sample text. This is a sample statement. Sample text. This is a sample statement.Sample text.
\section{Introduction}
示例文本。这是示例声明。示例文本。这是示例声明。
\begin{rem}
示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。\end{rem}
这里我想将 \textbf{Remark} 一词显示为 \textbf{\textit{Remark}},但不知道应该在序言中做哪些修改。有人可以帮忙吗?
\begin{exm} 示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。示例文本。 \end{exm} 在这里,我想将单词 \textbf{Example} 显示为
\textbf{\textit{Example}},但不知道应该在序言中做哪些修改。有人可以帮忙吗?
最后,这是一个表格的示例。但在这里我也遇到了问题。Table 一词不是粗体。我想将其显示为 \textbf{\textit{Table}}。序言中应该做哪些修改?
\begin{table}[ht]
\centering
\caption{}
\label{tab:example5}
\begin{tabular}{|r||r|r|r|r|r|}
\hline
& $2$ & $2$ & $2$ & $2$ & $2$ \\
\hline
$10$ & $8$ & $6$ & $4$ & $2$ & $\times$ \\
& $16$ & $12$ & $8$ & $4$ & \\
\hline
$40$ & $24$ & $12$ & $4$ & $\times$ & \\
& $48$ & $24$ & $8$ & & \\
\hline
$80$ & $32$ & $8$ & $\times$ && \\
& $64$ & $16$ & && \\
\hline
$80$ & $16$ & $\times$ & && \\
& $32$ & &&& \\
\hline
$32$ & $\times$ & &&& \\
\hline
\end{tabular}
\end{table}
\end{document}
答案1
要更改表格标题的格式,您可以使用\captionsetup
。例如,如果您想获取粗斜体字型的单词和数字,您可以使用
\captionsetup{format=plain, labelfont={bf,it}}
对于注释中的粗体斜体,...您可以定义一个新的定理样式:
\newtheoremstyle{bolditalic}
{3pt}
{3pt}
{\itshape}
{0pt}
{\bfseries\itshape}
{}
{.5em}
{}
然后将\newtheorem
调用样式放在后面,例如:
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[section]
\newtheorem{cor}{Corollary}[section]
\newtheorem{lem}{Lemma}[section]
\theoremstyle{bolditalic}
\newtheorem{rem}{Remark}[section]
编辑: 如果在表格标题中您只想格式化名称而不是数字,您可以执行以下操作:
\DeclareCaptionLabelFormat{bfit}{{\bfseries\itshape#1} #2}
\captionsetup{labelformat=bfit,labelsep=quad}
此处#1
对应于单词“表格”。在此示例中,您可以看到如何对该部分应用一些基本格式。对应#2
于“数字”,如果您想格式化此部分,可以添加类似于“ #1
”部分的内容。