blob: 162cbbe6f0e34679d85b75f0d071ee12cb05f852 (
about) (
plain)
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
|
%% SPDX-License-Identifier: CC0-1.0
%%
%% This LaTeX source is copyright (C) 2024, 2025 W. Kosior <koszko@koszko.org>
\documentclass{article}
\usepackage[a4paper, total={6in, 8in}, margin=1in]{geometry}
\usepackage[skip=10pt plus1pt, indent=20pt]{parskip}
\usepackage{longtable}
\usepackage[table]{xcolor}
\usepackage{hyperref}
\hypersetup{
colorlinks,
urlcolor={blue!80!black}
}
\usepackage{textcomp}
\usepackage{hyphenat}
\input{tlp.tex}
\rowcolors{3}{gray!20}{white!100}
\renewcommand*{\arraystretch}{1.3}
\def\nexttabcaption{Targeted States by APT's Origin Country}
\def\nexttablabel{tab:APT_Countries}
\title{Statistics of groups targeting particular countries}
\author{Wojciech Kosior}
\begin{document}
\useTLPFancyHeader{CLEAR}
\input{countries_table.tex}
\end{document}
|