1# -*- coding: utf-8 -*-
2# SPDX-License-Identifier: GPL-2.0
3
4# -- Additinal options for LaTeX output ----------------------------------
5# font config for ascii-art alignment
6
7latex_elements['preamble']  += '''
8    \\IfFontExistsTF{Noto Sans CJK SC}{
9	% For CJK ascii-art alignment
10	\\setmonofont{Noto Sans Mono CJK SC}[AutoFakeSlant]
11    }{}
12'''
13