| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>$title$</title>
- </head>
- <body>
- <header>
- <h1>$title$</h1>
- <p>
- $if(submitjournal)$
- Submitted to $submitjournal$.<br>
- $endif$
- $if(received)$
- Received: $received$;
- $endif$
- $if(revised)$
- Revised $revised$;
- $endif$
- $if(accepted)$
- Accepted $accepted$
- $endif$
- </p>
- <p>
- Authors:
- $for(author)$
- $author.name$
- $if(author.affiliation)$
- (
- $for(author.affiliation)$
- $author.affiliation$,
- $endfor$
- )
- $endif$
- ,
- $endfor$
- </p>
- $if(keywords)$
- <p>
- Keywords:
- $for(keywords)$
- $keywords$ ---
- $endfor$
- </p>
- $endif$
- </header>
- <main>
- $if(abstract)$
- <h2>Abstract</h2>
- <p>
- $abstract$
- </p>
- $endif$
- $body$
- </main>
- <footer>
- $if(software)$
- Software:
- $for(software)$
- $software$,
- $endfor$
- $endif$
- $if(facility)$
- Facilities:
- $for(facility)$
- $facility$,
- $endfor$
- $endif$
- </footer>
- </body>
- </html>
|