Skip to content

Instantly share code, notes, and snippets.

@yegor256
Last active April 19, 2024 07:37
Show Gist options
  • Select an option

  • Save yegor256/905c0a1eac18eb6839a192b37f0816e4 to your computer and use it in GitHub Desktop.

Select an option

Save yegor256/905c0a1eac18eb6839a192b37f0816e4 to your computer and use it in GitHub Desktop.

Revisions

  1. yegor256 revised this gist Apr 19, 2024. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion lncs-latex-template.md
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    Use the following LaTeX template, if a conference asks you to use the [`lncs` document class](https://www.springer.com/gp/computer-science/lncs/conference-proceedings-guidelines):
    Use the following LaTeX template, if a conference asks you to use the [`lncs`](https://www.springer.com/gp/computer-science/lncs/conference-proceedings-guidelines) document class (create your orcid [here](https://www.orcid.org)):

    ```
    \documentclass[runningheads]{llncs}
  2. yegor256 revised this gist Apr 15, 2024. 1 changed file with 5 additions and 2 deletions.
    7 changes: 5 additions & 2 deletions lncs-latex-template.md
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,10 @@
    Use the following LaTeX template, if a conference asks you to use the [`lncs` document class](https://www.springer.com/gp/computer-science/lncs/conference-proceedings-guidelines):

    **IT IS A DRAFT!**

    ```
    \documentclass[runningheads]{llncs}
    \usepackage[utf8]{inputenc}
    \usepackage{href-ul}
    \usepackage{natbib}
    \begin{document}
    \title{Contribution Title}
    \author{
    @@ -31,5 +32,7 @@ Use the following LaTeX template, if a conference asks you to use the [`lncs` do
    \end{abstract}
    \section{First Section}
    \subsection{A Subsection Sample}
    \bibliographystyle{plainnat}
    \bibliography{main}
    \end{document}
    ```
  3. yegor256 revised this gist Apr 12, 2024. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions lncs-latex-template.md
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,7 @@
    Use the following LaTeX template, if a conference asks you to use the [`lncs` document class](https://www.springer.com/gp/computer-science/lncs/conference-proceedings-guidelines):

    **IT IS A DRAFT!**

    ```
    \documentclass[runningheads]{llncs}
    \begin{document}
  4. yegor256 created this gist Apr 12, 2024.
    33 changes: 33 additions & 0 deletions lncs-latex-template.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,33 @@
    Use the following LaTeX template, if a conference asks you to use the [`lncs` document class](https://www.springer.com/gp/computer-science/lncs/conference-proceedings-guidelines):

    ```
    \documentclass[runningheads]{llncs}
    \begin{document}
    \title{Contribution Title}
    \author{
    John Doe\inst{1}\orcidID{0000-1111-2222-3333}
    \and
    Donald Knuth\inst{2,3}\orcidID{1111-2222-3333-4444}
    \and
    Yegor Bugayenko\inst{3}\orcidID{2222--3333-4444-5555}
    }
    \institute{
    Princeton University, Princeton NJ 08544, USA
    \and
    Springer Heidelberg, Tiergartenstr. 17, 69121 Heidelberg, Germany
    \email{[email protected]}
    \\
    \url{http://www.springer.com/gp/computer-science/lncs}
    \and
    ABC Institute, Rupert-Karls-University Heidelberg, Heidelberg, Germany
    \\
    \email{\{abc,lncs\}@uni-heidelberg.de}
    }
    \maketitle
    \begin{abstract}
    \keywords{First keyword \and Second keyword \and Another keyword.}
    \end{abstract}
    \section{First Section}
    \subsection{A Subsection Sample}
    \end{document}
    ```