| name | concur |
| description | Writing and formatting guidance for CONCUR (International Conference on Concurrency Theory) conference papers. Use when drafting, formatting, or submitting to CONCUR 2026. Covers Springer LNCS llncs class, concurrency theory conventions (theorem environments, process algebras, formal proofs), page limits, and camera-ready submission requirements. |
CONCUR 2026 Conference Writing Skill
CCF-B | Concurrency | Publisher: Springer
Conference: https://concur2026.compute.dela
Template: CONCUR/llncs.cls (Springer LNCS)
Document Setup
Preamble Structure
\documentclass[envcountsame]{llncs}
\usepackage{makeidx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{url}
\usepackage{hyperref}
\hypersetup{colorlinks=true}
Springer LNCS Options
| Option | Description |
|---|
envcountsame | Number theorem-like environments per section |
envcountreset | Reset theorem counters per section |
runningheads | Short titles in page headers |
Page Limits
|| Section | Limit |
|---------|-------|
| Main paper | 15 pages |
| References | No specific limit |
CONCUR typically allows 15 pages for the main content. Check the official CFP for the current year's exact limits.
Title and Author Formatting
\title{Your Paper Title Here}
\author{First Author\inst{1} \and
Second Author\inst{2}}
\institute{
Institution 1\\
\email{author1@example.com}
\and
Institution 2\\
\email{author2@example.com}
}
Abstract
\begin{document}
\maketitle
\begin{abstract}
Your abstract here. Summarize the problem, approach, and main results.
\keywords{keyword1, keyword2, keyword3}
\end{abstract}
Section Organization
Standard CONCUR paper structure:
- Abstract — Summary of problem, approach, and results
- Introduction — Problem, motivation, contributions
- Preliminaries — Formal definitions and notation
- Background — Related models and approaches
- Main Contribution — Core technical contribution
- Technical Results — Theorems and proofs
- Related Work — Comparison with prior work
- Conclusion — Summary and future work
- References
Theorem Environments
CONCUR papers emphasize formal proofs:
\theoremstyle{plain}
\newtheorem{observation}{Observation}
\newtheorem{property}{Property}
\newtheorem{invariant}{Invariant}
\theoremstyle{plain}
\newtheorem*{theorem}{Theorem}
\newtheorem*{lemma}{Lemma}
\newtheorem*{corollary}{Corollary}
\newtheorem*{proposition}{Proposition}
\newtheorem*{claim}{Claim}
\theoremstyle{Proof}
\newtheorem{Proof}{Proof}
Process Algebra Notation
CONCUR papers often use process algebra notation:
% Examples of process expressions:
% P := a.0 | Q := b.(P || R)
% Bisimulation: P \sim Q
Use standard process algebra operators:
- Prefix: $a.P$
- Choice: $P + Q$
- Parallel: $P \mid Q$ or $P \parallel Q$
- Restriction: $P \backslash L$
- Recursion: $A \stackrel{\text{def}}{=} P$
Figures and Tables
\begin{figure}[t]
\centering
includegraphics[width=0.8\linewidth]{fig/lts}
\caption{Labeled transition system.}
\label{fig:lts}
\end{figure}
- Use PDF, PNG, or EPS
- Ensure grayscale legibility
- Self-contained captions
- Use
booktabs for tables (no vertical rules)
References (natbib)
\bibliographystyle{spbasic} % Springer basic style
\bibliography{references}
\citet{smith2023} % Smith et al. (2023)
\citep{smith2023} % (Smith et al. 2023)
Formatting Rules
- Format: Two-column, single-spaced
- Paper size: A4
- Body font: 10pt
- Margins: 2.5cm all around
Submission Checklist