Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vonaka/lncs
Fix of the original Springer LNCS LaTeX class
https://github.com/vonaka/lncs
hyperref latex-class lncs springer
Last synced: about 2 months ago
JSON representation
Fix of the original Springer LNCS LaTeX class
- Host: GitHub
- URL: https://github.com/vonaka/lncs
- Owner: vonaka
- Archived: true
- Created: 2020-05-25T10:54:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-26T09:59:34.000Z (5 months ago)
- Last Synced: 2024-09-25T05:03:58.692Z (about 2 months ago)
- Topics: hyperref, latex-class, lncs, springer
- Language: TeX
- Homepage:
- Size: 27.3 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Springer LNCS LaTeX Class
***The issue this class is addressing is solved with version 2.24 of
[the original template](https://www.overleaf.com/latex/templates/springer-lecture-notes-in-computer-science/kzwwpvhwnvfj).***This is the fix of the [original][1] Springer LNCS LaTeX Template
(version 2.20 10-Mar-2018). When the original class is used with
[hyperref][2] package and `envcountsame` and `envcountsect` options
some references are broken. For example, if two lemmas are defined in
two different sections, the reference to the second lemma brings to
the definition of the first one:```latex
\documentclass[envcountsame,envcountsect]{llncs}
\usepackage{hyperref}\begin{document}
\section{First Section}
\begin{lemma}
\label{lemma:first}
First lemma in the first page of the first section.
\end{lemma}
\begin{theorem}
\label{th:first}
Smart theorem.
\end{theorem}
\newpage
\section{Second Section}
\begin{lemma}
\label{lemma:second}
Second lemma on the second page.
\end{lemma}
Click \ref{lemma:second} and go to the first page if you're using the
original class, otherwise stay here with me.
\begin{theorem}
\label{th:second}
Yet another smart theorem.
\end{theorem}
All this can be used with autoref (\autoref{th:second}).\end{document}
```[1]: https://www.springer.com/gp/computer-science/lncs/conference-proceedings-guidelines?countryChanged=true
[2]: https://ctan.org/pkg/hyperref