diff options
author | Karl Berry <karl@freefriends.org> | 2021-08-09 21:05:50 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-08-09 21:05:50 +0000 |
commit | f7668f7fa59f4e8cf8bd07b98e8ad6394eac2db0 (patch) | |
tree | 4ecac2044d5e09beed3205a511bdfcdd8783cc4f /Master/texmf-dist/doc/latex/einfart/einfart-doc-en.tex | |
parent | b2a868cf15a4757ff225cd6270fffdc24783dfb0 (diff) |
jxu (9aug21)
git-svn-id: svn://tug.org/texlive/trunk@60206 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/einfart/einfart-doc-en.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/einfart/einfart-doc-en.tex | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/Master/texmf-dist/doc/latex/einfart/einfart-doc-en.tex b/Master/texmf-dist/doc/latex/einfart/einfart-doc-en.tex index 2a5d47d28bb..7e030fed157 100644 --- a/Master/texmf-dist/doc/latex/einfart/einfart-doc-en.tex +++ b/Master/texmf-dist/doc/latex/einfart/einfart-doc-en.tex @@ -98,7 +98,7 @@ \title{\einfart{}, write your articles in a simple and clear way} \author{Jinwen XU} -\thanks{Corresponding to: \texttt{\einfart{} 2021/08/08}} +\thanks{Corresponding to: \texttt{\einfart{} 2021/08/08a}} \email{\href{mailto:ProjLib@outlook.com}{ProjLib@outlook.com}} \date{August 2021, Beijing} @@ -135,7 +135,7 @@ In order to use the package or classes described here, you need to: One only needs to put \begin{code} - \documentclass{einfart} +\documentclass{einfart} \end{code} as the first line to use the \einfart{} class. Please note that you need to use either \hologo{XeLaTeX} or \hologo{LuaLaTeX} engine to compile. @@ -158,7 +158,7 @@ Let's first look at a complete document. \maketitle \begin{abstract} - Ceci est un résumé. \dnf<Plus de contenu est nécessaire.> + Ceci est un résumé. \dnf<(*\meta{some hint}*)> \end{abstract} \begin{keyword} AAA, BBB, CCC, DDD, EEE @@ -415,12 +415,12 @@ When referencing a theorem-like environment, it is recommended to use \lstinline \begin{tip}[Example] \begin{code} - \begin{definition}[Strange things] \label{def: strange} ... +\begin{definition}[Strange things] \label{def: strange} ... \end{code} will produce \begin{definition}[Strange things]\label{def: strange} - This is the definition of some strange objects. There is approximately an one-line space before and after the theorem environment, and there will be a symbol to mark the end of the environment. + This is the definition of some strange objects. There is approximately a one-line spacing before and after the theorem environment, and there will be a symbol to mark the end of the environment. \end{definition} \lstinline|\cref{def: strange}| will be displayed as: \cref{def: strange}. @@ -488,9 +488,9 @@ And then define this environment in one of following five ways: Here is an example. The following code: \begin{code} - \NameTheorem[EN]{proofidea}{Idea} - \CreateTheorem*{proofidea*} - \CreateTheorem{proofidea}<subsection> +\NameTheorem[EN]{proofidea}{Idea} +\CreateTheorem*{proofidea*} +\CreateTheorem{proofidea}<subsection> \end{code} defines an unnumbered environment \lstinline|proofidea*| and a numbered environment \lstinline|proofidea| (numbered within subsection) respectively. They can be used in English context. @@ -525,45 +525,45 @@ Similarly, there is \lstinline|\needgraph| : Therefore, the title part can either be written in the usual way, in accordance with the standard class \textsf{article}: \begin{code} - \title{(*\meta{title}*)} - \author{(*\meta{author}*)\thanks{(*\meta{text}*)}} - \date{(*\meta{date}*)} - \maketitle - \begin{abstract} - (*\meta{abstract}*) - \end{abstract} - \begin{keyword} - (*\meta{keywords}*) - \end{keyword} +\title{(*\meta{title}*)} +\author{(*\meta{author}*)\thanks{(*\meta{text}*)}} +\date{(*\meta{date}*)} +\maketitle +\begin{abstract} + (*\meta{abstract}*) +\end{abstract} +\begin{keyword} + (*\meta{keywords}*) +\end{keyword} \end{code} or written in the way of \AmS{} classes: \begin{code} - \title{(*\meta{title}*)} - \author{(*\meta{author}*)} - \thanks{(*\meta{text}*)} - \address{(*\meta{address}*)} - \email{(*\meta{email}*)} - \date{(*\meta{date}*)} - \keywords{(*\meta{keywords}*)} - \subjclass{(*\meta{subjclass}*)} - \begin{abstract} - (*\meta{abstract}*) - \end{abstract} - \maketitle +\title{(*\meta{title}*)} +\author{(*\meta{author}*)} +\thanks{(*\meta{text}*)} +\address{(*\meta{address}*)} +\email{(*\meta{email}*)} +\date{(*\meta{date}*)} +\keywords{(*\meta{keywords}*)} +\subjclass{(*\meta{subjclass}*)} +\begin{abstract} + (*\meta{abstract}*) +\end{abstract} +\maketitle \end{code} The author information can contain multiple groups, written as: \begin{code} - \author{(*\meta{author 1}*)} - \address{(*\meta{address 1}*)} - \email{(*\meta{email 1}*)} - \author{(*\meta{author 2}*)} - \address{(*\meta{address 2}*)} - \email{(*\meta{email 2}*)} - ... +\author{(*\meta{author 1}*)} +\address{(*\meta{address 1}*)} +\email{(*\meta{email 1}*)} +\author{(*\meta{author 2}*)} +\address{(*\meta{address 2}*)} +\email{(*\meta{email 2}*)} +... \end{code} Among them, the mutual order of \lstinline|\address|, \lstinline|\curraddr|, \lstinline|\email| is not important. |