public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
From: BPJ <melroch-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: pandoc-discuss <pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
Subject: Re: Once again: Cyrillic bold characters not rendered by Pandoc
Date: Sat, 5 Nov 2022 22:48:33 +0100	[thread overview]
Message-ID: <CADAJKhCEQkhX50NnX7vFTegpijeZF9f2ckUPtTxgEZ9wye2FSQ@mail.gmail.com> (raw)
In-Reply-To: <6A3A0C74-3F96-498F-9B7E-2FB3558216BD-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 7481 bytes --]

Download the Noto fonts. They are excellent (and are still maintained!)

https://fonts.google.com/noto/use

Den lör 5 nov. 2022 18:57'Marek Stepanek' via pandoc-discuss <
pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> skrev:

> Thx Bastien,
>
> on my macOS DejaVu Serif and Sans are not found (pdfengine=xelatex)
>
> making a `locate -i dejavu` in my shell I realised that my TeXLive install
> has DajaVu fonts but without space between. Without space XeLateX compiles
> much longer, but finishes with:
>
> ```
> kpathsea: Appending font creation commands to missfont.log.
> Error producing PDF.
> ! Package fontspec Error: The font "DejaVuSerif" cannot be found.
>
> For immediate help type H <return>.
>  ...
>
> l.21   \setsansfont
> ```
>
> But now I inserted
>
> mainfont: "Times New Roman"
> sansfont: "Times New Roman"
>
> (The second sansfont is senseless) So looking into my FontBook.app I see
> the DejaVu is called:
>
> sansfont: "DejaVu Sans Mono for Powerline" (Who has had the idea to call
> this font like this?)
>
> Working! Wow! This means: I really have to change after many years from
> LaTeX to XeLaTeX? OMG! XeLateX needs much longer to compile. Hope there
> will be no bad surprises changing my long text from LaTeX to XeLaTex ...
>
>
> Once again thank you Bastien
>
>
> ps: I don't like the fonts like that. Is it always as ugly in XeLaTeX?
>
>
>
> > On 5. Nov 2022, at 18:20, Bastien DUMONT <bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org>
> wrote:
> >
> > On my installation, your LaTeX sample does not output any Cyrillic
> characters at all with the Latin Modern font. However, the md file renders
> sucessfully when:
> >
> >  – removing all the lines related to inputenc and fontenc
> >  – adding `mainfont: "DejaVu Serif"` and `sansfont: "DejaVu Sans"` (or
> whatever suitable fonts);
> >  – compiling with --pdf-engine=xelatex.
> >
> > (BTW, there is a typo in one of the lines you commented out: “mainfont”,
> not “maintfont”.)
> >
> > As for me, I have no experience with pdflatex :-)
> >
> > Le Saturday 05 November 2022 à 05:52:46PM, 'Marek Stepanek' via
> pandoc-discuss a écrit :
> >> Hello all!
> >>
> >> Sorry, I already asked this question here. But I could not resolve this
> problem. I would be **very** grateful for a solution. If there is no
> solution, I have to switch to LaTeX - and this will be hard for a three
> hundert page book.
> >>
> >> Pandoc does not render bold face in Cyrillic. I just tried to put my
> Markdown document into LaTeX - and it is working!
> >>
> >> Here my Minimal Working (or not working) Examples:
> >>
> >> 1. in LateX
> >> 2. in Markdown
> >> 3. Makefile for Markdown
> >>
> >> ***
> >>
> >> \documentclass[fontsize=12pt,a4paper]{scrartcl}
> >> \usepackage[russian,english,french,main=ngerman]{babel}
> >> % \usepackage[T1]{fontenc}
> >> % \usepackage[T1,T2A]{fontenc}
> >> % \usepackage[utf8]{inputenc}
> >>
> >> \begin{document}
> >>
> >> \tableofcontents
> >>
> >> \bigskip
> >>
> >> \section{Wir, Russen, haben zwei Heimaten: unser Russland und Europa.}
> >>
> >> \selectlanguage{english}
> >>
> >> Chapters in \textbf{Cyrillic} are not bold. Text between two asterisks
> are not rendered bold. Could somebody help me out?
> >>
> >> I tried with
> >>
> >> \begin{verbatim}
> >>        --pdf-engine   xelatex
>                        \
> >> \end{verbatim}
> >>
> >> Second Question: how to comment out lines in a Makefile?
> >>
> >> Thank you for your help!
> >>
> >> \selectlanguage{russian}
> >>
> >> \section{У нас, у русских, две Родины – наша Россия и Европа.}
> >>
> >> \textbf{Выхожу один я на дорогу;}\newline
> >> Сквозь туман кремнистый путь блестит;\newline
> >> Ночь тиха. Пустыня внемлет богу,\newline
> >> И звезда с звездою говорит.
> >>
> >> \end{document}
> >>
> >> ***
> >>
> >> ---
> >> documentclass: scrartcl
> >> # Tests also with documentclass: article
> >> fontsize: 12pt
> >> pagesize: a4paper
> >> # maintfont: "Times New Roman"
> >> colorlinks: red
> >> urlcolor: mygray
> >> header-includes:
> >> - \usepackage[russian,english,french,main=ngerman]{babel}
> >> - \usepackage[T1]{fontenc}
> >> # - \usepackage[T1,T2A]{fontenc}# No bold Characters at all
> >> # does not change anything:
> >> - \usepackage[utf8]{inputenc}
> >> - \usepackage{xcolor}
> >> - \definecolor{mygray}{gray}{.45}
> >> include-before:
> >> - \tableofcontents
> >> - \bigskip
> >> ---
> >>
> >> # Wir, Russen, haben zwei Heimaten: unser Russland und Europa.
> >>
> >> ```{=latex}
> >> \selectlanguage{english}
> >> ```
> >>
> >> Chapters in **Cyrillic** are not bold. Text between two asterisks are
> not rendered bold. Could somebody help me out?
> >>
> >> I tried with
> >>
> >> ```
> >>        --pdf-engine   xelatex
>                        \
> >> ```
> >>
> >> Second Question: how to comment out lines in a Makefile?
> >>
> >> Thank you for your help!
> >>
> >> ```{=latex}
> >> \selectlanguage{russian}
> >> % \newfontfamily\cyrillicfont[Script=Cyrillic]{Times New Roman}
> >> ```
> >> # У нас, у русских, две Родины – наша Россия и Европа.
> >>
> >> **Выхожу один я на дорогу;**\newline
> >> Сквозь туман кремнистый путь блестит;\newline
> >> Ночь тиха. Пустыня внемлет богу,\newline
> >> И звезда с звездою говорит.
> >>
> >> ***
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >> --
> >> You received this message because you are subscribed to the Google
> Groups "pandoc-discuss" group.
> >> To unsubscribe from this group and stop receiving emails from it, send
> an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> >> To view this discussion on the web visit
> https://groups.google.com/d/msgid/pandoc-discuss/80AF9A20-6302-439E-8339-3BD515916020%40googlemail.com
> .
> >
> > --
> > You received this message because you are subscribed to the Google
> Groups "pandoc-discuss" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/pandoc-discuss/Y2abZXN9lSUoYplk%40localhost
> .
>
> --
> You received this message because you are subscribed to the Google Groups
> "pandoc-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/pandoc-discuss/6A3A0C74-3F96-498F-9B7E-2FB3558216BD%40googlemail.com
> .
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhCEQkhX50NnX7vFTegpijeZF9f2ckUPtTxgEZ9wye2FSQ%40mail.gmail.com.

[-- Attachment #2: Type: text/html, Size: 10301 bytes --]

  parent reply	other threads:[~2022-11-05 21:48 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-05 16:52 'Marek Stepanek' via pandoc-discuss
     [not found] ` <80AF9A20-6302-439E-8339-3BD515916020-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2022-11-05 17:14   ` AW: " denis.maier-NSENcxR/0n0
     [not found]     ` <2589154db1dc47b591bc4094fadc8bf8-NSENcxR/0n0@public.gmane.org>
2022-11-05 17:19       ` 'Marek Stepanek' via pandoc-discuss
2022-11-05 17:20   ` Bastien DUMONT
2022-11-05 17:56     ` 'Marek Stepanek' via pandoc-discuss
     [not found]       ` <6A3A0C74-3F96-498F-9B7E-2FB3558216BD-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2022-11-05 18:21         ` Bastien DUMONT
2022-11-05 21:48         ` BPJ [this message]
     [not found]           ` <CADAJKhCEQkhX50NnX7vFTegpijeZF9f2ckUPtTxgEZ9wye2FSQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-11-07  6:14             ` 'Marek Stepanek' via pandoc-discuss
2022-11-09 11:21               ` Ulrike Fischer
     [not found]               ` <73737F01-5A22-41A9-B3CB-95A3FFC8B57A-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2022-11-09 17:35                 ` BPJ
     [not found]                   ` <CADAJKhAHOjJFwAv-FG+KLMbo8iuUxYVSf4O6kfXvQfpu2zJpHA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-11-09 18:27                     ` 'Marek Stepanek' via pandoc-discuss
2022-11-09 19:03                       ` Ulrike Fischer
     [not found]                       ` <5F9E7E7E-DC37-4EB5-97EB-3DB6B28C541F-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2022-11-09 22:45                         ` Bastien DUMONT

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CADAJKhCEQkhX50NnX7vFTegpijeZF9f2ckUPtTxgEZ9wye2FSQ@mail.gmail.com \
    --to=melroch-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).