\documentclass[11pt]{amsproc}
\usepackage{fullpage}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{color}
\parskip .2in
\newtheorem{theorem}{\bf Theorem}%[section]
\newtheorem{lemma}[theorem]{\bf Lemma}
\newtheorem{claim}{\bf Claim}
\newtheorem*{claim 4.1}{\bf Claim 4.1}
\newtheorem*{claim 4.2}{\bf Claim 4.2}
\newtheorem{corollary}[theorem]{\bf Corollary}
\newtheorem{pro}[theorem]{\bf Proposition}
\newtheorem{remark}[theorem]{\bf Remark}
\newtheorem{conjecture}[theorem]{\bf Conjecture}
\newtheorem{definition}[theorem]{\bf Definition}
\newtheorem{fact}[theorem]{\bf Fact}
\newtheorem{construction}[theorem]{\bf Construction}
\newtheorem{problem}[theorem]{\bf Problem}
\def\G{{\Gamma}}
\def\C{{\mathcal C}}
\def\D{{\mathcal D}}
\def\B{{\mathcal B}}
\def\F{{\mathcal F}}
\def\N{{\mathcal N}}
\def\L{{\mathcal L}}
\def\H{{\mathcal H}}
\def\d{\delta}
\def\eps{\varepsilon}
\def\lf{\lfloor}
\def\rf{\rfloor}
\def\lc{\lceil}
\def\rc{\rceil}
\def\deg{{\rm deg}}
\def\a{\alpha}
\def\b{\beta}
\def\g{\gamma}
\def\P{\Phi}
\def\p{\varphi}
\def\s{\sigma}
\def\t{\tau}
\def\fa{\mathfrak{a}}
\def\fb{\mathfrak{b}}
\def\fp{\mathfrak{p}}
\def\fq{\mathfrak{q}}
\def\bp{\mathbb{P}}
\def\exp{\mathbb{E}}
\def\Bar1{\overline}
\def\LAN{\rangle}
\def\RAN{\langle}
\def\Pf{{\bf Proof. }}
\def\ie{{\em i.e.}}
\def\eg{{\em e.g.}}
\def\e0{\eps_0}
\begin{document}
\title{{\bf My Title }}
\author[A.S]{Amanda Stone}
\address{My Address}
\email{my email}
\date{\today}
\large
\begin{abstract}
\end{abstract}
\maketitle
\section{Introduction}
\end{document}
以上是代码。文章的格式如下。第一行是文章标题,然后是文章名称,然后是摘要。我打算在名称和摘要之间添加献词行,字体可能比较小。有人能帮我吗?非常感谢您的时间和关注。
答案1
可能是这样。我主要做的是将环境移到\maketitle
前面abstract
。这样,我可以在 之前插入奉献内容,abstract
同时让它留在 之后\maketitle
。我将奉献内容放在自己的组中,居中,字体大小减小。
已编辑\bf
并转换\em
为现代 LaTeX 等效版本。
\documentclass[11pt]{amsproc}
\usepackage{fullpage}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{color}
\parskip .2in
\newtheorem{theorem}{\textbf{Theorem}}%[section]
\newtheorem{lemma}[theorem]{\textbf{Lemma}}
\newtheorem{claim}{\textbf{Claim}}
\newtheorem*{claim 4.1}{\textbf{Claim 4.1}}
\newtheorem*{claim 4.2}{\textbf{Claim 4.2}}
\newtheorem{corollary}[theorem]{\textbf{Corollary}}
\newtheorem{pro}[theorem]{\textbf{Proposition}}
\newtheorem{remark}[theorem]{\textbf{Remark}}
\newtheorem{conjecture}[theorem]{\textbf{Conjecture}}
\newtheorem{definition}[theorem]{\textbf{Definition}}
\newtheorem{fact}[theorem]{\textbf{Fact}}
\newtheorem{construction}[theorem]{\textbf{Construction}}
\newtheorem{problem}[theorem]{\textbf{Problem}}
\def\G{{\Gamma}}
\def\C{{\mathcal C}}
\def\D{{\mathcal D}}
\def\B{{\mathcal B}}
\def\F{{\mathcal F}}
\def\N{{\mathcal N}}
\def\L{{\mathcal L}}
\def\H{{\mathcal H}}
\def\d{\delta}
\def\eps{\varepsilon}
\def\lf{\lfloor}
\def\rf{\rfloor}
\def\lc{\lceil}
\def\rc{\rceil}
\def\deg{{\rm deg}}
\def\a{\alpha}
\def\b{\beta}
\def\g{\gamma}
\def\P{\Phi}
\def\p{\varphi}
\def\s{\sigma}
\def\t{\tau}
\def\fa{\mathfrak{a}}
\def\fb{\mathfrak{b}}
\def\fp{\mathfrak{p}}
\def\fq{\mathfrak{q}}
\def\bp{\mathbb{P}}
\def\exp{\mathbb{E}}
\def\Bar1{\overline}
\def\LAN{\rangle}
\def\RAN{\langle}
\def\Pf{\textbf{Proof.}}
\def\ie{\emph{i.e.}}
\def\eg{\emph{e.g.}}
\def\e0{\eps_0}
\begin{document}
\title{\textbf{My Title}}
\author[A.S]{Amanda Stone}
\address{My Address}
\email{my email}
\date{\today}
\large
\maketitle
{\centering\footnotesize This is my dedication.\par}
\begin{abstract}
\end{abstract}
\section{Introduction}
\end{document}
答案2
使用命令。这是课程设计者希望你采用的\dedicatory
方式。amsproc
\dedicatory{To all those who helped me.}
...
\maketitle
顺便说一句:请不要\bf
在标题中使用(该类将负责将标题本身加粗),也不要在文章的任何其他地方使用,因为此命令几十年来已被弃用(请改用{\bfseries My bold text.}
或\textbf{My bold text.}
)。
\documentclass[11pt]{amsproc}
\begin{document}
\title{My Title}
\author[A.S]{Amanda Stone}
\address{My Address}
\email{my email}
\date{\today}
\dedicatory{To all those who helped me.} % <<<<<<<<<<<<<<<<<<
\begin{abstract}
The abstract
\end{abstract}
\maketitle
\section{Introduction}
My great paper.
\end{document}