aidisclose is a LaTeX package that provides a standardized and transparent mechanism for declaring the use of Generative Artificial Intelligence (AID) tools in academic, technical, and professional documents.
The package implements an extension of the GAIDeT (Generative AI Delegation Taxonomy) and automates the creation of disclosure statements and task-based checklists, aligned with emerging publisher and institutional requirements.
For the complete manual, full taxonomy, and visual examples, see aidisclose-doc.pdf.
The package allows authors to:
- Select specific tasks delegated to Generative AI from the GAIDeT taxonomy
- Declare the Generative AI tools used (or explicitly state that none were used)
- Add optional explanatory comments (numbered or unnumbered)
- Automatically generate a formatted Disclosure of Delegation to Generative AI section or chapter
- Automatically manage citations for both the taxonomy and the package itself
The package is supported by the companion website aidisclose.org.
The website provides an interactive interface where authors can:
- Fill in authors and (optionally) the AID tools used
- Browse the GAIDeT taxonomy visually and Select delegated tasks
- Add multiple comments (numbered or unnumbered), reorder them by drag-and-drop, and preview numbering
- Generate either a full minimal LaTeX document or just a configuration snippet
- Copy the generated code to the clipboard
If you generate a full document, the website also points you to download aidisclose.sty and compile the resulting .tex file.
Load the package in the document preamble:
\usepackage[<options>]{aidisclose}
autobib = true | false(default:true) When enabled, the package automatically:
- Writes an
aidisclose.bibfile containing references for the GAIDeT taxonomy and this package. - Loads this bibliography resource (compatible with
biblatexand standard BibTeX).
Set this option to false if you prefer to manage citations manually.
nocite = true | false(default:false) This option controls the visible citations in the disclosure statement footnote.- If
false(default), the package adds visible citations to the GAIDeT taxonomy paper and the package manual in the footnote. - If
true, citations are suppressed in the output (though references are still needed).
You can configure the package using the new unified interface (recommended) or individual commands.
You can set options and configuration dynamically using key-value lists.
% 1. Set Package Options
\AIDset{
autobib = true,
nocite = false
}
% 2. Configure Content and Visuals
\AIDconfig{
tools = {ChatGPT, Gemini},
checkmark = {\ding{51}}, % Requires pifont package
color_used = blue!70!black,
order = {preamble, taxonomy, tools, comments}
}
The taxonomy is organized into 9 phases. Use the corresponding keys (e.g., c:idea) with \AIDactivate{}.
- 1. Conceptualization (
c:*) - 2. Literature Review (
l:*) - 3. Methodology (
m:*) - 4. Software Development and Automation (
s:*) - 5. Data Management and Analysis (
d:*) - 6. Visuals and Multimedia (
v:*) - 7. Writing and Editing (
w:*) - 8. Ethics Review (
e:*) - 9. Quality Assurance (
sup:*)
| Command | Description |
|---|---|
\AIDactivate{<key>} |
Activates a specific task in the taxonomy (e.g., w:draft). |
\AIDtoolsUsed{<list>} |
Defines the list of AI tools used. |
\AIDset{<key=val>} |
Sets package boolean options (autobib, nocite). |
\AIDconfig{<key=val>} |
Sets visual and content configuration (colors, order, etc.). |
\AIDdiscloseTitle{<title>} |
Customizes the section title. |
\AIDorder{<list>} |
Reorders sections (preamble, tools, taxonomy, comments). |
\AIDrenderDeclaration |
Prints the full disclosure statement. |
\AIDloadLanguage{<code>} |
Manually forces a specific language (e.g., pt, fr). |
\AIDpackageName |
Prints the package name with a link to CTAN. |
\AIDGetString{<key>} |
Returns the localized string for a specific internal key. |
\aidversion |
Prints the current version number. |
\documentclass{article}
\usepackage{aidisclose}
\AIDactivate{c:idea}
\AIDactivate{l:sum}
\AIDactivate{w:poly}
\AIDtoolsUsed{ChatGPT-4o, GitHub Copilot}
\begin{AIDcomment}
AI was used for refining code structure in Section 4.
\end{AIDcomment}
\begin{document}
\section{Conclusion}
...
\AIDrenderDeclaration[2]{Mary Doe, John Doe}
\end{document}
The package automatically detects the document language via babel or polyglossia and loads the appropriate translation file.
English (default), Catalan, Czech, Danish, Dutch, French, German, Greek, Italian, Polish, Portuguese, Slovak, Spanish, and Ukrainian.
If the detected language is not supported, the package falls back to English.
For advanced users:
\AIDloadLanguage{<code>}: Manually forces the loading of a language file (e.g.,\AIDloadLanguage{pt}), overriding auto-detection.\AIDGetString{<key>}: Returns the localized string for a specific internal key.\AIDpackageName: Typesets the package name with a hyperref link.