SparQ icon indicating copy to clipboard operation
SparQ copied to clipboard

LaTeX Manual Font Rendering Bug

Open muelthom opened this issue 3 years ago • 0 comments

In its current version (V0.8) the rendering of certain symbols, such as quotation marks " and angle brackets (<, and >), is inaccurate/broken throughout the SparQ manual due to missing font enconding.

An easy fix for this is adding \usepackage[T1]{fontenc} before the input encoding in SparQ-Manual.tex:

\documentclass[headsepline]{scrreprt}

%\usepackage{isolatin1}
\usepackage[T1]{fontenc}  % <<< Add this
\usepackage[latin1]{inputenc}  % <<< Optionally, reactivate this
\usepackage{amsfonts,amsthm} %% used for mathbb -> R

...

Additional remark: The documents typesetting can be significantly improved by adding the package microtype (simply via \usepackage{microtype}).

muelthom avatar Feb 28 '22 11:02 muelthom