I am making a poster for presentation. I prefer tikzposter. When working on the formatting I prefer bold text everywhere so that it can be read more easily from a distance.
My code of a working example:
\documentclass[25pt, portrait, margin=0in, innermargin=0.5in, blockverticalspace=0.5in, colspace=0.5in, ]{tikzposter} %17, 20, 25pt
\geometry{paperwidth=45in, paperheight=44in}
\usepackage[utf8]{inputenc}
\makeatletter
\setlength{\TP@visibletextwidth}{43.5in} %paperwidth - margin
\setlength{ \TP@visibletextheight}{42.5in} %paperheight - margin
\makeatother
\usepackage{tikz} %% required for tikzposter
\usepackage{calc} %% required for tikzposter
\usepackage{ifthen} %% required for tikzposter
\usepackage{ae} %% required for tikzposter
\usepackage{xstring} %% required for tikzposter
\usepackage{etoolbox} %% required for tikzposter
\usepackage{xkeyval} %% required for tikzposter
\usepackage{authblk} % for author affiliation in title section
\usetheme{Default} %Default, Rays, Basic, Simple, Envelope, Wave, Board, Autumn, Desert
\title{\parbox{\linewidth}{\centering\textbf{This is a really long and smart title for all the work I have done on this}}}
\author[1]{\textbf{Smart C.}}
\author[2]{\textbf{J. Brainy}}
\author[2]{\textbf{M. Scientist}}
\author[1]{\textbf{S. Proffessor}}
\date{\today}
\affil[1]{\textbf{University of Somewhere}}
\affil[2]{\textbf{Commission os Something}}
%% To avoid extra vspace between title and body % START % https://tex.stackexchange.com/questions/225542/how-to-add-multiple-affiliations-in-the-tikzposter-class
\makeatletter
\def\maketitle{\AB@maketitle}
\makeatother
%% To avoid extra vspace between title and body % END
\begin{document}
\maketitle
\end{document}
Here, as can be seen the punctuation and the word and are not bolded. The question is how can I bold them. I have the same problem with a few cases in the body of the poster.


\textbf{...}the font is unbolded. If this is not emphasized enough, perhaps you could try a larger font? – sk8forether Jun 02 '17 at 19:17