我想为一个会议创建一份包含多份摘要的文档。下面是仅生成一份摘要的代码。如何使用此代码生成多份摘要?
\documentclass[twoside]{article}
\usepackage{amssymb,amsfonts,amssymb,amsthm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%%%%%%%PAGE FORMAT - PLEASE DO NOT MODIFY!!!!
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{myheadings} \topmargin =-20pt \marginparwidth = 45pt
\evensidemargin = -15pt \oddsidemargin = -15pt \textheight = 670pt
\textwidth = 500pt \linespread{1.2}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand{\theequation}{\arabic{section}.\arabic{equation}}
\newtheorem{myth}{Teorema}[section]
\newtheorem{mylem}{Lema}[section]
\newtheorem{mypro}{Proposi\c c\~ao}[section]
\newtheorem{mydef}{Defini\c c\~ao}[section]
\newtheorem{myrem}{Observa\c c\~ao}[section]
\newtheorem{mycor}{Corol\'ario}[section]
\newtheorem{myex}{Exemplo}[section]
\newcommand{\cqd}{\hspace{10pt}\fbox{}}
\newcommand{\cqdf}{\hspace{10pt}\rule{5pt}{5pt}}
%
\begin{document}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%%%%% PAGE HEADER - PLEASE DO NOT MODIFY!!!
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{empty} %%
\title{
\vspace{-1in}\parbox{\linewidth}{\footnotesize\noindent {\sc\bf
Conference}
\newline
{\sc \bf Universidade}
\newline
\bf Cidade - data}
\newline\newline
%%
%%%%%%%%%%%%%%%%%%% END OF THE HEADER %%%%%%%%%%%%%%%%%%%%%%%%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% WRITE THE TITLE IN THE FOLLOWING COMMAND WITH
%%% lower case (minuscule) letters!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
{\sc Title}
%
\author{\sc
Autor \thanks{Departament, University,\, email: } }}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% DO NOT FILL THE COMMAND \date{} BELOW, LET IT EMPTY!!
%% PLEASE, KEEP IN THE TEXT THE COMMANDS \maketitle AND \thispagestyle{empty}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\date{}
\maketitle \thispagestyle{empty} \vspace{-10pt}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
Abstract
答案1
\begin{abstract} ... \end{abstract}
根据需要多次使用环境。
\documentclass[twoside]{article}
\usepackage{amssymb,amsfonts,amssymb,amsthm}
\usepackage{lipsum} % <-- To create dummy text
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%%%%%%%PAGE FORMAT - PLEASE DO NOT MODIFY!!!!
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{myheadings} \topmargin =-20pt \marginparwidth = 45pt
\evensidemargin = -15pt \oddsidemargin = -15pt \textheight = 670pt
\textwidth = 500pt \linespread{1.2}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand{\theequation}{\arabic{section}.\arabic{equation}}
\newtheorem{myth}{Teorema}[section]
\newtheorem{mylem}{Lema}[section]
\newtheorem{mypro}{Proposi\c c\~ao}[section]
\newtheorem{mydef}{Defini\c c\~ao}[section]
\newtheorem{myrem}{Observa\c c\~ao}[section]
\newtheorem{mycor}{Corol\'ario}[section]
\newtheorem{myex}{Exemplo}[section]
\newcommand{\cqd}{\hspace{10pt}\fbox{}}
\newcommand{\cqdf}{\hspace{10pt}\rule{5pt}{5pt}}
%
\begin{document}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%%%%% PAGE HEADER - PLEASE DO NOT MODIFY!!!
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{empty} %%
\title{
\vspace{-1in}\parbox{\linewidth}{\footnotesize\noindent {\sc\bf
Conference}
\newline
{\sc \bf Universidade}
\newline
\bf Cidade - data}
\newline\newline
%%
%%%%%%%%%%%%%%%%%%% END OF THE HEADER %%%%%%%%%%%%%%%%%%%%%%%%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% WRITE THE TITLE IN THE FOLLOWING COMMAND WITH
%%% lower case (minuscule) letters!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
{\sc Title}
%
\author{\sc
Autor \thanks{Departament, University,\, email: } }}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% DO NOT FILL THE COMMAND \date{} BELOW, LET IT EMPTY!!
%% PLEASE, KEEP IN THE TEXT THE COMMANDS \maketitle AND \thispagestyle{empty}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\date{}
\maketitle \thispagestyle{empty} \vspace{-10pt}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\begin{abstract}
\lipsum[1]
\end{abstract}
\begin{abstract}
\lipsum[1]
\end{abstract}
\end{document}
答案2
(如果答案没有帮助,请原谅,因为我是新手)
详细阐述 David Carlisle 的建议,“只需将每个摘要设置为(比如说)一个新的 \section”:
我能想到的最接近的例子是一篇博士论文,需要两种语言的摘要。它们被编码为不同的部分。