-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPDFTrustChain.tex
115 lines (85 loc) · 2.76 KB
/
PDFTrustChain.tex
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
\documentclass[conference,10pt]{IEEEtran}
% Re-allow e.g. the \thanks command.
\IEEEoverridecommandlockouts
\usepackage[dvipsnames]{xcolor}
% to be able to draw some self-contained figs
\usepackage{tikz}
\usepackage{amsmath}
\usepackage{minted}
% \usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{amsthm}
\usepackage{siunitx}
\usepackage[caption=false]{subfig}
\usepackage{listings}
% sorts multiple references in the same citation:
\usepackage[numbers,sort]{natbib}
\usepackage{verbatim}
\input{prelude}
% \pagestyle{plain} % get page numbering
% BEGIN local definitions for text to insert
\newcommand{\tc}{trust chain} % no emph? lower case? ...
\newcommand{\pd}{parser differential}
\newcommand{\ssp}{$S$} % static specification
\newcommand{\dsp}{$D$} % dynamic specification
\newcommand{\rdloc}{\lstcd{readLocation}}
\newcommand{\xref}{\lstcd{XRef}}
% \newcommand{\objid}{\emph{object identifier}} % or ...
\newcommand{\objid}{\lstcd{ObjId}}
\newcommand{\objids}{\lstcd{ObjId}'s} % ?
% END local definitions
\Crefname{section}{Sec.}{Secs.}
\Crefname{figure}{Fig.}{Figs.}
\begin{document}
\date{}
% make title bold and 14 pt font (Latex default is non-bold, 16 pt)
\title{Research Report: Strengthening Weak Links in the PDF Trust Chain}
\author{
\IEEEauthorblockN{ Mark Tullsen, William Harris }%
\IEEEauthorblockA{\small Galois, Inc.\\
\texttt{\{tullsen,wrharris\}@galois.com}} \and
\IEEEauthorblockN{Peter Wyatt}
\IEEEauthorblockA{\small PDF Association\\
\texttt{[email protected]}}
}
\maketitle
% \thispagestyle{plain} % get page numbering
\input{abstract}
\begin{comment}
CONVENTION:
- using this lstlisting[style=meta] environment to capture
text in outline form that has not been fleshed out / turned into prose.
META NOTES:
- aim for 12 pages (in 10pt) (LangSec specifies no limit)
TERMS (to actually use, and define when needed):
- ``complies with standard'', ``compatible with standard''
- pre-DOM
- XRef (capitalized thus)
- Trust Chain (no quotes) [remove upper case?]
- parser differential
\end{comment}
% content:
\input{intro}
\input{pdf}
\input{parsing}
\input{pre-dom}
\input{other-formats}
\input{implementation}
\input{related-work}
\input{conclusion}
% ------------------------------------------------------------------------------
\section*{Acknowledgments}
This research was supported by DARPA awards HR001119C0073 and
HR001119C0079.
% ----------------------------------------------------------------------------
\bibliographystyle{plain}
\bibliography{zotero-pdf-biblio,old,local}
% zotera-pdf-biblio.bib
% The Zotero export (using Better BibTex Addon) of the PDF collection
% old.bib
% - TA1's last LangSec paper
% local.bib
% - all other references here
\appendix
\input{appendix1}
\end{document}