I am currently using the following code below. I am curious - how can I change the font in the title under SetPaperName? Currently the S does not appear like an S. Is there a similar font I can use to have a better S and how do I change it?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{newspaper}
\date{\today}
\currentvolume{1}
\currentissue{1}
%% [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 Post}
%% The name used in the running header after
%% the first page
\SetHeaderName{The Post}
%% and also...
\SetPaperSlogan{``testing''}
\SetPaperPrice{\MakeLowercase{https://intothecryptoverse.com/}}
% [LianTze] times (the package not the font) is rather outdated now; use newtx (see later)
% \usepackage{times}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{hyperref}
\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}{2}
\byline{Introduction }{Benjamin J. Cowen}
\end{multicols}
\closearticle
\end{document}
and newspaper-mod.sty by LianTze Lim tex.SE user is available:
\usepackage{newtxtext,newtxmath}
\usepackage{etoolbox}
\newcommand{\headlinestyle}{\itshape\huge}
\newcommand{\bylinestyle}{\scshape\Large}
\patchcmd{\headline}{#1}{\headlinestyle #1}{}{}
\patchcmd{\byline}{#1}{\bylinestyle #1}{}{}


\usepackage{newspaper-mod}comes from? I think there is a missunderstanding: thesis there, but because the used font is a fractur font it is correct written simular to an f (in fractur there is a long and a short s, which is written depends on the position of the s in the word ...) – Mensch Jun 26 '19 at 04:01