paper migration

This commit is contained in:
2025-10-22 12:20:28 +02:00
commit 634f685c91
11 changed files with 171 additions and 0 deletions

17
paper/src/auto/main.el Normal file
View File

@@ -0,0 +1,17 @@
;; -*- lexical-binding: t; -*-
(TeX-add-style-hook
"main"
(lambda ()
(setq TeX-command-extra-options
"-file-line-error -interaction=nonstopmode")
(TeX-add-to-alist 'LaTeX-provided-class-options
'(("report" "12pt") ("article" "12pt")))
(TeX-run-style-hooks
"latex2e"
"preamble"
"chapters/01-intro"
"article"
"art12"))
:latex)

View File

View File

@@ -0,0 +1,10 @@
%% Cite like this \parencite{knuth1984texbook}. See \cref{fig:example}.
%% \begin{figure}[h]
%% \centering
%% \includegraphics[width=.7\linewidth]{figures/example.pdf}
%% \caption{Example figure.}
%% \label{fig:example}
%% \end{figure}
\section{Know They Enemy}
To know how to overcome we need to

22
paper/src/main.tex Normal file
View File

@@ -0,0 +1,22 @@
% -*- TeX-master: t -*-
\documentclass[12pt]{article}
\input{preamble}
\begin{document}
\title{Agent-Aware Defenses for Dynamic Pricing and Recommendation Systems under Adversarial Traffic}
\author{Daniel Rösel\\
\texttt{daniel@alves.world}\\[0.5em]
IE University\\
Madrid, Spain}
\date{}
\maketitle
\begin{abstract}
The introduction of AI agents into the ecosystem of online commerce which is run on dynamic pricing algorithms is disruptive to their own nature.
\end{abstract}
\input{chapters/01-intro}
\printbibliography
\end{document}

35
paper/src/preamble.tex Normal file
View File

@@ -0,0 +1,35 @@
\usepackage[margin=1in]{geometry}
\usepackage{microtype}
\usepackage{csquotes}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{booktabs}
\usepackage{siunitx}
\usepackage{amsmath}
\usepackage{hyperref}
\usepackage{cleveref}
\usepackage[backend=bibtex,style=numeric]{biblatex}
\addbibresource{bib/references.bib}
\hypersetup{colorlinks=true,linkcolor=blue,citecolor=blue,urlcolor=blue}
\numberwithin{figure}{section}
\numberwithin{table}{section}
% Custom title formatting to match template
\usepackage{titling}
\pretitle{\begin{center}\noindent\rule{\linewidth}{0.4pt}\par\vspace{1em}\LARGE\bfseries}
\posttitle{\par\end{center}\vspace{0.5em}}
\preauthor{\begin{center}\large}
\postauthor{\end{center}}
\predate{\begin{center}\large}
\postdate{\end{center}\vspace{1em}}
% Redefine abstract environment
\renewenvironment{abstract}{%
\begin{center}%
\textbf{Abstract}%
\end{center}%
\par\vspace{0.5em}%
\small%
}{%
\par\vspace{1em}\noindent\rule{\linewidth}{0.4pt}%
}