summaryrefslogtreecommitdiff
path: root/assets/newspaper/template.tex
blob: 741d662f1f4921ab98cccb77e1a08a312d122309 (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
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
\documentclass{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{fontspec}

\usepackage{newspaper}

\date{\today}
\currentvolume{1}
\currentissue{FIG_EDITION}

%% [LianTze] The newspaper package also provides 
%% these commands to set various metadata:

%% The banner headline on the first page
%%   (The colon after s: is to get a more
%%   modern majuscule s in this font instead of 
%%   the medieval tall s. For anyone interested 
%%   in the history: 
%%  http://medievalwriting.50megs.com/scripts/letters/historys.htm)
\SetPaperName{The Effort Post}

%% The name used in the running header after
%% the first page
\SetHeaderName{The Effort Post}

%% and also...
\SetPaperLocation{\#cyberspace}
\SetPaperSlogan{FIG_SLOGAN}
\SetPaperPrice{FIG_PRICE}


% [LianTze] times (the package not the font) is rather outdated now; use newtx (see later)
% \usepackage{times}
\usepackage{graphicx}
\usepackage{multicol}

\usepackage{picinpar}
%uasage of picinpar:
%\begin{window}[1,l,\includegraphics{},caption]xxxxx\end{window}


%% [LianTze] Contains some modifications
\usepackage{newspaper-mod}
%%... so now you can redefine the headline and byline style if you want to.
%% These can be issued just before any
%% byline or headline in the paper, to
%% individually style each article
%%
% \renewcommand{\headlinestyle}{\itshape\Large\lsstyle}
% \renewcommand{\bylinestyle}{\bfseries\Large\raggedright}


%%%%%%%%%  Front matter   %%%%%%%%%%

\usepackage{lipsum}

\begin{document}
\maketitle

\begin{multicols}{3}
\setmainfont{NoticiaText-Regular}[Path=/home/llll/src/wasp/assets/newspaper/fonts/, Extension=.ttf, RawFeature={mode=harf}]
\newfontfamily\figemote{NotoColorEmoji}[Path=/home/llll/src/wasp/assets/newspaper/fonts/, Extension=.ttf, RawFeature={mode=harf}]
FIG_ARTICLES
\end{multicols}

\end{document}