-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLLM_AI_Security_and_Governance_Checklist.tex
More file actions
executable file
·82 lines (65 loc) · 2.48 KB
/
LLM_AI_Security_and_Governance_Checklist.tex
File metadata and controls
executable file
·82 lines (65 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
%%% ================================================
%%% OWASP Top 10 For LLM Applications Template
%%% Version: 0.0.1
%%% Date: 2023-11-28
%%% Template Authors:
%%% - Jason Ross <algorythm@gmail.com>
%%% ================================================
%%% ================================================
%%% How to use this
%%% ================================================
%%% Update the variables below
%%% If you want to change text color on the front
%%% cover, the areas required are commented below.
%%% If you want to modify text and border colors
%%% for your chapter headers go into the file
%%% `structure.tex` and replace the name of the
%%% colour (set to ) with a new colour name
%%% (find and replace ctrl+f will do this for you).
%%% ================================================
%%% ================================================
%%% VARIABLES
%%% ================================================
%%% Project Name
\def\projectName{LLM AI Cybersecurity \& Governance Checklist}
\def\projectSubName{From the OWASP Top 10 \\ for LLM Applications Team}
\def\docVersion{1.1}
%%% Project Type
\def\projectType{OWASP Project Document}
%%% Report Date (defaults to Today's date)
% \def\date{\today}
\def\date{April 11, 2024}
%%% ================================================
%%% DOCUMENT CONFIGURATION
%%% ================================================
\documentclass[
11pt, % Default font size, select one of 10pt, 11pt or 12pt
fleqn, % Left align equations
letterpaper, % Paper size, use either 'a4paper' for A4 size or 'letterpaper' for US letter size
% landscape, % Uncomment for for a landscape layout (useful for wide tables or figures)
oneside, % Uncomment for oneside mode: this doesn't start new chapters and parts on odd pages (adding an empty page if required)
% this mode is more suitable if the book is to be read on a screen instead of printed
]{owasp-doc}
%%% ================================================
%%% DOCUMENT BEGINS HERE
%%% ================================================
% \tracingmacros=1 % turn on tracing
\begin{document}
\pagestyle{fancy}
%%% COVER PAGE
\input{sections/coverpage}
\clearpage
%%% CHANGELOG & DISCLAIMER
\input{sections/changelog-disclaimer}
\clearpage
%%% TABLE OF CONTENTS
\input{sections/toc}
\clearpage
%%% ALL OTHER CONTENT
\input{sections/main}
\clearpage
%%% APPENDICES
\appendix
\input{apx/team}
\end{document}
% \tracingmacros=0 % turn off tracing