| name | ase |
| description | Writing and formatting guidance for ASE (IEEE/ACM International Conference on Automated Software Engineering). Use when drafting, formatting, or submitting to ASE. Covers ACM acmart with sigconf format, anonymous double-blind review mode, ASE page limits, software engineering conventions, tool papers, camera-ready preparation with DOI/ISBN, and ACM-Reference-Format citations. |
ASE Conference Writing Skill
CCF-A | SE | Publisher: ACM/IEEE
Conference: https://conf.researchr.org/track/ase-2026/ase-2026-papers
Template: ASE/acmart.cls (ACM acmart, SIGCONF format)
Document Setup
Preamble Structure
% === SUBMISSION MODE (anonymous, double-blind) ===
\documentclass[sigconf,review,anonymous]{acmart}
\settopmatter{printfolios=true}
% === CAMERA-READY MODE ===
\documentclass[sigconf]{acmart}
\setcopyright{acmlicensed}
\acmConference[ASE 2026]{Proceedings of the 41st IEEE/ACM International Conference
on Automated Software Engineering}{September 1--5, 2026}{Vancouver, Canada}
\acmISBN{978-X-XXXX-XXXX-X/26/09}
\acmDOI{10.1145/XXXXXXX}
\acmPrice{}
Required Packages
\usepackage[round]{natbib} % Author-year citations
\usepackage{algorithm}
\usepackage[noend]{algorithmic}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{listings}
\lstset{basicstyle=\small\ttfamily}
Page Limits
| Section | Limit |
|---|
| Main paper (submission) | 14 pages |
| Tool paper | 8 pages |
| References | No limit |
| Appendix | Permitted (not counted) |
ASE enforces a strict 14-page limit for regular papers and 8 pages for tool papers. References and appendix do not count toward this limit, but reviewers are not required to read the appendix.
Anonymity Requirements
Double-blind review with anonymous class option:
- Do not include author names anywhere in the submission
- Use third person for self-citations: "Smith et al. showed..." not "we showed..."
- Anonymize URLs (e.g., GitHub repositories, institutional links)
- Remove PDF metadata that reveals authorship
- Do not include acknowledgments
Camera-Ready Differences
When preparing camera-ready after acceptance:
- Remove
review and anonymous options from \documentclass
- Add
\setcopyright{acmlicensed} or appropriate rights mode
- Fill in
\acmConference with full conference title and dates
- Add
\acmISBN, \acmDOI, and \acmPrice fields
- Restore all author names and affiliations
- Add acknowledgments if desired
Section Organization
Standard ASE paper structure:
- Introduction — Problem, motivation, contributions (enumerate contributions explicitly)
- Background/Motivation — Context, related work positioning
- Approach/Method — Core technical contribution
- Implementation/Development — System details, tool support
- Evaluation — Experimental methodology, results, comparison
- Discussion — Threats to validity, limitations
- Related Work — Positioning against prior art
- Conclusion — Summary and future work
- References
Theorem Environments
ASE papers may include formal reasoning:
\theoremstyle{plain}
\newtheorem{definition}{Definition}
\newtheorem{property}{Property}
\theoremstyle{plain}
\newtheorem*{theorem}{Theorem}
\newtheorem*{lemma}{Lemma}
Code Listings
% Inline code:
The tool uses \lstinline!soot! for bytecode analysis.
% Code blocks:
\begin{lstlisting}[language=Java, caption={Bug pattern detector}, label={lst:detector}]
public class NPEDetector extends BodyTransformer {
@Override
protected void internalTransform(Body b, String phaseName,
Map<String, Object> options) {
UnitPatchingGraph g = new UnitPatchingGraph(b);
for (Unit u : g.getUnits()) {
if (isNullCheck(u)) {
// Check if dereference happens without guard
}
}
}
}
\end{lstlisting}
Figures and Tables
- Use vector formats (.pdf) where possible
- Ensure figures are legible in grayscale
- Number figures and tables sequentially
- Captions should be descriptive and self-contained
References (natbib)
ACM-Reference-Format bibstyle with author-year citations:
\bibliographystyle{ACM-Reference-Format}
\bibliography{references}
% Citations:
\citet{smith2023} % Smith et al. (2023)
\citep{smith2023} % (Smith et al. 2023)
Each reference must list all authors — do not use "et al." in the bibliography.
Formatting Rules
- Format: ACM sigconf (two-column, single-spaced)
- Paper size: US Letter
- Margins: Top/bottom 1in, sides 0.75in, column gap 0.25in
- Body font: 9pt minimum, Times New Roman
- References: 8pt, no page limit
- Line spacing: Single-spaced (template default)
Submission Checklist
Camera-Ready Checklist