public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* Available default fonts in a factory pandoc/latex Docker image?
@ 2021-06-29 22:44 Shakrmaker
       [not found] ` <bb821641-7fc9-420f-907f-36d198800d84n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Shakrmaker @ 2021-06-29 22:44 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 1321 bytes --]

Hi Everyone,

Does anyone know how can I determine the list of available default, 
included fonts (limited as they are) inside a factory 
<https://hub.docker.com/r/pandoc/latex/tags> pandoc/latex docker image; 
and/or list them when running a GitHub Action?

eg.

jobs:
  convert_via_pandoc:
    runs-on: ubuntu-18.04
      steps:
        uses: docker://pandoc/latex:2.14.0.1

Other than trying multiple convert attempts with pandoc -V fontfamily=[wild 
guessing] and hoping I hit a valid one :)

Basically I'd just like to set the font family to a factory san-serif font 
and be done (if anyone happens to know that list) . Or somehow I can list 
the available fonts inside these pandoc docker images.

If the latter, would I spin up the docker image separately from a GitHub 
Action, access the container OS and fc-list? Or?

Sorry, I'm not super familiar with all this stuff, obviously.

Thanks in advance.

-- 
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/bb821641-7fc9-420f-907f-36d198800d84n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 1998 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found] ` <bb821641-7fc9-420f-907f-36d198800d84n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-06-30  3:50   ` Shakrmaker
       [not found]     ` <8a071f76-add3-4917-aa67-6fd73402d3f6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2021-07-07 22:05   ` Pedro P. Palazzo
  1 sibling, 1 reply; 17+ messages in thread
From: Shakrmaker @ 2021-06-30  3:50 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 1381 bytes --]

Well, if I'm doing this correctly... when I spin up the 2.14.0.3 
docker/latex image and poke around, in:
/usr/share/fontconfig/conf.avail/

I see in: 40-nonlatin.conf:

<!--                                                                                   
 
  Sans-serif faces                               
 -->                                                     
        <alias>                                                   
                <family>Arshia</family>
                <default><family>sans-serif</family></default>
        </alias>                                         
        <alias> 
                <family>Elham</family>
                <default><family>sans-serif</family></default>
        </alias>                                         

...and a continued long list of sans serif ^ font family entries.

Does this mean they're available as a GitHub Action arg with -V 
fontfamily=Elham, etc? I will try that out next.               

-- 
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/8a071f76-add3-4917-aa67-6fd73402d3f6n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 3984 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]     ` <8a071f76-add3-4917-aa67-6fd73402d3f6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-06-30  4:11       ` Shakrmaker
       [not found]         ` <1d9e9bc2-6820-4b57-9729-ef7c170cbd43n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Shakrmaker @ 2021-06-30  4:11 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 2228 bytes --]

Well, when I tried Elham my GitHub action run failed on the font, and when 
I check these in the factory local docker/latex 2.14.0.3 image, I seem to 
be coming up empty:

# ls /usr/share/fonts
ls: /usr/share/fonts: No such file or directory
# ls /usr/local/share/fonts
ls: /usr/local/share/fonts: No such file or directory
# ls ~./fonts
ls: ~./fonts: No such file or directory
# fc-list
#

The interesting thing to a newbie like me - is where is pandoc getting its 
default *Latin Modern* from the docker/latex image? Since the docs say for 
this latex variable:

https://pandoc.org/MANUAL.html#variables-for-latex > *Fonts:*
*"fontfamily* font package for use with pdflatex: The default is Latin 
Modern <https://ctan.org/pkg/lm>."

On Tuesday, June 29, 2021 at 11:50:21 PM UTC-4 Shakrmaker wrote:

> Well, if I'm doing this correctly... when I spin up the 2.14.0.3 
> docker/latex image and poke around, in:
> /usr/share/fontconfig/conf.avail/
>
> I see in: 40-nonlatin.conf:
>
> <!--                                                                                   
>  
>   Sans-serif faces                               
>  -->                                                     
>         <alias>                                                   
>                 <family>Arshia</family>
>                 <default><family>sans-serif</family></default>
>         </alias>                                         
>         <alias> 
>                 <family>Elham</family>
>                 <default><family>sans-serif</family></default>
>         </alias>                                         
>
> ...and a continued long list of sans serif ^ font family entries.
>
> Does this mean they're available as a GitHub Action arg with -V 
> fontfamily=Elham, etc? I will try that out next.               
>
>

-- 
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/1d9e9bc2-6820-4b57-9729-ef7c170cbd43n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 3562 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]         ` <1d9e9bc2-6820-4b57-9729-ef7c170cbd43n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-06-30 11:07           ` Pedro P. Palazzo
       [not found]             ` <dbe68bc0-6b51-4c28-81ac-ae4c3e4d8743n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Pedro P. Palazzo @ 2021-06-30 11:07 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 2923 bytes --]

This is the normal behavior. Latin Modern comes packaged in LaTeX itself. 
If you need a different font, you can customize your own docker image based 
on the pandoc/latex image and install the appropriate package (installing 
packages at runtime has not worked for me), or use --pdf-engine=xelatex and 
map your fonts directory as a volume onto the docker container. In the 
latter case, you can no longer use the `uses:` syntax in GitHub Actions, 
but have to declare it with `run:`.

Em quarta-feira, 30 de junho de 2021 às 05:11:25 UTC+1, Shakrmaker escreveu:

> Well, when I tried Elham my GitHub action run failed on the font, and when 
> I check these in the factory local docker/latex 2.14.0.3 image, I seem to 
> be coming up empty:
>
> # ls /usr/share/fonts
> ls: /usr/share/fonts: No such file or directory
> # ls /usr/local/share/fonts
> ls: /usr/local/share/fonts: No such file or directory
> # ls ~./fonts
> ls: ~./fonts: No such file or directory
> # fc-list
> #
>
> The interesting thing to a newbie like me - is where is pandoc getting its 
> default *Latin Modern* from the docker/latex image? Since the docs say 
> for this latex variable:
>
> https://pandoc.org/MANUAL.html#variables-for-latex > *Fonts:*
> *"fontfamily* font package for use with pdflatex: The default is Latin 
> Modern <https://ctan.org/pkg/lm>."
>
> On Tuesday, June 29, 2021 at 11:50:21 PM UTC-4 Shakrmaker wrote:
>
>> Well, if I'm doing this correctly... when I spin up the 2.14.0.3 
>> docker/latex image and poke around, in:
>> /usr/share/fontconfig/conf.avail/
>>
>> I see in: 40-nonlatin.conf:
>>
>> <!--                                                                                   
>>  
>>   Sans-serif faces                               
>>  -->                                                     
>>         <alias>                                                   
>>                 <family>Arshia</family>
>>                 <default><family>sans-serif</family></default>
>>         </alias>                                         
>>         <alias> 
>>                 <family>Elham</family>
>>                 <default><family>sans-serif</family></default>
>>         </alias>                                         
>>
>> ...and a continued long list of sans serif ^ font family entries.
>>
>> Does this mean they're available as a GitHub Action arg with -V 
>> fontfamily=Elham, etc? I will try that out next.               
>>
>>

-- 
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/dbe68bc0-6b51-4c28-81ac-ae4c3e4d8743n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 4888 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]             ` <dbe68bc0-6b51-4c28-81ac-ae4c3e4d8743n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-06-30 19:10               ` Shakrmaker
       [not found]                 ` <4ed25c3b-269a-4564-8eb5-42de0c7c0202n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Shakrmaker @ 2021-06-30 19:10 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 3278 bytes --]

Thanks Pedro for confirming. I guess I will look at building a custom 
docker image with a basic sans serif font installed, and use and maintain 
that image going forward.

On Wednesday, June 30, 2021 at 7:07:24 AM UTC-4 pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:

> This is the normal behavior. Latin Modern comes packaged in LaTeX itself. 
> If you need a different font, you can customize your own docker image based 
> on the pandoc/latex image and install the appropriate package (installing 
> packages at runtime has not worked for me), or use --pdf-engine=xelatex and 
> map your fonts directory as a volume onto the docker container. In the 
> latter case, you can no longer use the `uses:` syntax in GitHub Actions, 
> but have to declare it with `run:`.
>
> Em quarta-feira, 30 de junho de 2021 às 05:11:25 UTC+1, Shakrmaker 
> escreveu:
>
>> Well, when I tried Elham my GitHub action run failed on the font, and 
>> when I check these in the factory local docker/latex 2.14.0.3 image, I seem 
>> to be coming up empty:
>>
>> # ls /usr/share/fonts
>> ls: /usr/share/fonts: No such file or directory
>> # ls /usr/local/share/fonts
>> ls: /usr/local/share/fonts: No such file or directory
>> # ls ~./fonts
>> ls: ~./fonts: No such file or directory
>> # fc-list
>> #
>>
>> The interesting thing to a newbie like me - is where is pandoc getting 
>> its default *Latin Modern* from the docker/latex image? Since the docs 
>> say for this latex variable:
>>
>> https://pandoc.org/MANUAL.html#variables-for-latex > *Fonts:*
>> *"fontfamily* font package for use with pdflatex: The default is Latin 
>> Modern <https://ctan.org/pkg/lm>."
>>
>> On Tuesday, June 29, 2021 at 11:50:21 PM UTC-4 Shakrmaker wrote:
>>
>>> Well, if I'm doing this correctly... when I spin up the 2.14.0.3 
>>> docker/latex image and poke around, in:
>>> /usr/share/fontconfig/conf.avail/
>>>
>>> I see in: 40-nonlatin.conf:
>>>
>>> <!--                                                                                   
>>>  
>>>   Sans-serif faces                               
>>>  -->                                                     
>>>         <alias>                                                   
>>>                 <family>Arshia</family>
>>>                 <default><family>sans-serif</family></default>
>>>         </alias>                                         
>>>         <alias> 
>>>                 <family>Elham</family>
>>>                 <default><family>sans-serif</family></default>
>>>         </alias>                                         
>>>
>>> ...and a continued long list of sans serif ^ font family entries.
>>>
>>> Does this mean they're available as a GitHub Action arg with -V 
>>> fontfamily=Elham, etc? I will try that out next.               
>>>
>>>

-- 
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/4ed25c3b-269a-4564-8eb5-42de0c7c0202n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 6920 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]                 ` <4ed25c3b-269a-4564-8eb5-42de0c7c0202n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-06-30 23:34                   ` Shakrmaker
       [not found]                     ` <58a94bbf-36e1-415f-b928-bb0abcf4f9c6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Shakrmaker @ 2021-06-30 23:34 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 5037 bytes --]

Ok, well I built a custom docker image based on:
pandoc/latex:2.14.0.3

Then I did this in my custom Docker container, hoping I'd get at least some 
fonts installed. It appears to install quite a few, and exited normally.
tlmgr install collection-fontsrecommended

Then in my custom Docker container CLI, I do this, I look for Helvetica, 
and get this:
/opt/texlive/texmf-local # tlmgr search --all "fonts" | grep helv
helvetic - URW "Base 35" font pack for LaTeX
helvetic:
    texmf-dist/fonts/afm/adobe/helvetic/phvb8a.afm
    texmf-dist/fonts/afm/adobe/helvetic/phvb8an.afm
    texmf-dist/fonts/afm/adobe/helvetic/phvbo8a.afm
    texmf-dist/fonts/afm/adobe/helvetic/phvbo8an.afm
    texmf-dist/fonts/afm/adobe/helvetic/phvr8a.afm
    ...etc

I've pushed this custom Docker image to my repo on Docker Hub 
<https://hub.docker.com/repository/docker/tojdk/pandoc-latex-fonts>, and my 
GitHub Action in another repo loads my custom Docker image, and calls 
convert_via_pandoc with this arg
 -V fontfamily=helvet

While it runs my custom Docker image, and converts the PDF, I still don't 
get Helvetica, I still get Latin Modern in the PDF. What am I doing wrong?

*Note:* I can tell that "helvet" is the desired spelling. Since if I 
misspell it intentionally, or feed that -V fontamily argument some bogus 
font family name, the conversion will fail on the missing '.sty'.

Is there something I still have to configure in my custom Docker container 
image to use that installed Helvetica font? Or should that tlmgr install 
collection-fontsrecommended have been sufficient?

Thanks

On Wednesday, June 30, 2021 at 3:10:32 PM UTC-4 Shakrmaker wrote:

> Thanks Pedro for confirming. I guess I will look at building a custom 
> docker image with a basic sans serif font installed, and use and maintain 
> that image going forward.
>
> On Wednesday, June 30, 2021 at 7:07:24 AM UTC-4 pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:
>
>> This is the normal behavior. Latin Modern comes packaged in LaTeX itself. 
>> If you need a different font, you can customize your own docker image based 
>> on the pandoc/latex image and install the appropriate package (installing 
>> packages at runtime has not worked for me), or use --pdf-engine=xelatex and 
>> map your fonts directory as a volume onto the docker container. In the 
>> latter case, you can no longer use the `uses:` syntax in GitHub Actions, 
>> but have to declare it with `run:`.
>>
>> Em quarta-feira, 30 de junho de 2021 às 05:11:25 UTC+1, Shakrmaker 
>> escreveu:
>>
>>> Well, when I tried Elham my GitHub action run failed on the font, and 
>>> when I check these in the factory local docker/latex 2.14.0.3 image, I seem 
>>> to be coming up empty:
>>>
>>> # ls /usr/share/fonts
>>> ls: /usr/share/fonts: No such file or directory
>>> # ls /usr/local/share/fonts
>>> ls: /usr/local/share/fonts: No such file or directory
>>> # ls ~./fonts
>>> ls: ~./fonts: No such file or directory
>>> # fc-list
>>> #
>>>
>>> The interesting thing to a newbie like me - is where is pandoc getting 
>>> its default *Latin Modern* from the docker/latex image? Since the docs 
>>> say for this latex variable:
>>>
>>> https://pandoc.org/MANUAL.html#variables-for-latex > *Fonts:*
>>> *"fontfamily* font package for use with pdflatex: The default is Latin 
>>> Modern <https://ctan.org/pkg/lm>."
>>>
>>> On Tuesday, June 29, 2021 at 11:50:21 PM UTC-4 Shakrmaker wrote:
>>>
>>>> Well, if I'm doing this correctly... when I spin up the 2.14.0.3 
>>>> docker/latex image and poke around, in:
>>>> /usr/share/fontconfig/conf.avail/
>>>>
>>>> I see in: 40-nonlatin.conf:
>>>>
>>>> <!--                                                                                   
>>>>  
>>>>   Sans-serif faces                               
>>>>  -->                                                     
>>>>         <alias>                                                   
>>>>                 <family>Arshia</family>
>>>>                 <default><family>sans-serif</family></default>
>>>>         </alias>                                         
>>>>         <alias> 
>>>>                 <family>Elham</family>
>>>>                 <default><family>sans-serif</family></default>
>>>>         </alias>                                         
>>>>
>>>> ...and a continued long list of sans serif ^ font family entries.
>>>>
>>>> Does this mean they're available as a GitHub Action arg with -V 
>>>> fontfamily=Elham, etc? I will try that out next.               
>>>>
>>>>

-- 
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/58a94bbf-36e1-415f-b928-bb0abcf4f9c6n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 7958 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]                     ` <58a94bbf-36e1-415f-b928-bb0abcf4f9c6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-07-01  2:22                       ` Shakrmaker
       [not found]                         ` <f6a86403-c99d-41b3-8568-c4f6aef23812n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Shakrmaker @ 2021-07-01  2:22 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 6236 bytes --]

Oh, and further to my last post in this thread, this is what I see in the 
CLI on my custom Docker image 
<https://hub.docker.com/repository/docker/tojdk/pandoc-latex-fonts> also. 
Thanks in advance for any help!

/opt/texlive/texmf-local # tlmgr info | grep "font pack"
  arphic: Arphic (Chinese) font packages
i avantgar: URW "Base 35" font pack for LaTeX
i bookman: URW "Base 35" font pack for LaTeX
i collection-metapost: MetaPost and Metafont packages
i courier: URW "Base 35" font pack for LaTeX
  grotesq: URW Grotesq font pack for LaTeX
i helvetic: URW "Base 35" font pack for LaTeX
  mweights: Support for multiple-weight font packages
i ncntrsbk: URW "Base 35" font pack for LaTeX
i palatino: URW "Base 35" font pack for LaTeX
i symbol: URW "Base 35" font pack for LaTeX
i times: URW "Base 35" font pack for LaTeX
  wadalab: Wadalab (Japanese) font packages
i zapfchan: URW "Base 35" font pack for LaTeX
i zapfding: URW "Base 35" font pack for LaTeX


On Wednesday, June 30, 2021 at 7:34:11 PM UTC-4 Shakrmaker wrote:

> Ok, well I built a custom docker image based on:
> pandoc/latex:2.14.0.3
>
> Then I did this in my custom Docker container, hoping I'd get at least 
> some fonts installed. It appears to install quite a few, and exited 
> normally.
> tlmgr install collection-fontsrecommended
>
> Then in my custom Docker container CLI, I do this, I look for Helvetica, 
> and get this:
> /opt/texlive/texmf-local # tlmgr search --all "fonts" | grep helv
> helvetic - URW "Base 35" font pack for LaTeX
> helvetic:
>     texmf-dist/fonts/afm/adobe/helvetic/phvb8a.afm
>     texmf-dist/fonts/afm/adobe/helvetic/phvb8an.afm
>     texmf-dist/fonts/afm/adobe/helvetic/phvbo8a.afm
>     texmf-dist/fonts/afm/adobe/helvetic/phvbo8an.afm
>     texmf-dist/fonts/afm/adobe/helvetic/phvr8a.afm
>     ...etc
>
> I've pushed this custom Docker image to my repo on Docker Hub 
> <https://hub.docker.com/repository/docker/tojdk/pandoc-latex-fonts>, and 
> my GitHub Action in another repo loads my custom Docker image, and calls 
> convert_via_pandoc with this arg
>  -V fontfamily=helvet
>
> While it runs my custom Docker image, and converts the PDF, I still don't 
> get Helvetica, I still get Latin Modern in the PDF. What am I doing wrong?
>
> *Note:* I can tell that "helvet" is the desired spelling. Since if I 
> misspell it intentionally, or feed that -V fontamily argument some bogus 
> font family name, the conversion will fail on the missing '.sty'.
>
> Is there something I still have to configure in my custom Docker container 
> image to use that installed Helvetica font? Or should that tlmgr install 
> collection-fontsrecommended have been sufficient?
>
> Thanks
>
> On Wednesday, June 30, 2021 at 3:10:32 PM UTC-4 Shakrmaker wrote:
>
>> Thanks Pedro for confirming. I guess I will look at building a custom 
>> docker image with a basic sans serif font installed, and use and maintain 
>> that image going forward.
>>
>> On Wednesday, June 30, 2021 at 7:07:24 AM UTC-4 pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
>> wrote:
>>
>>> This is the normal behavior. Latin Modern comes packaged in LaTeX 
>>> itself. If you need a different font, you can customize your own docker 
>>> image based on the pandoc/latex image and install the appropriate package 
>>> (installing packages at runtime has not worked for me), or use 
>>> --pdf-engine=xelatex and map your fonts directory as a volume onto the 
>>> docker container. In the latter case, you can no longer use the `uses:` 
>>> syntax in GitHub Actions, but have to declare it with `run:`.
>>>
>>> Em quarta-feira, 30 de junho de 2021 às 05:11:25 UTC+1, Shakrmaker 
>>> escreveu:
>>>
>>>> Well, when I tried Elham my GitHub action run failed on the font, and 
>>>> when I check these in the factory local docker/latex 2.14.0.3 image, I seem 
>>>> to be coming up empty:
>>>>
>>>> # ls /usr/share/fonts
>>>> ls: /usr/share/fonts: No such file or directory
>>>> # ls /usr/local/share/fonts
>>>> ls: /usr/local/share/fonts: No such file or directory
>>>> # ls ~./fonts
>>>> ls: ~./fonts: No such file or directory
>>>> # fc-list
>>>> #
>>>>
>>>> The interesting thing to a newbie like me - is where is pandoc getting 
>>>> its default *Latin Modern* from the docker/latex image? Since the docs 
>>>> say for this latex variable:
>>>>
>>>> https://pandoc.org/MANUAL.html#variables-for-latex > *Fonts:*
>>>> *"fontfamily* font package for use with pdflatex: The default is Latin 
>>>> Modern <https://ctan.org/pkg/lm>."
>>>>
>>>> On Tuesday, June 29, 2021 at 11:50:21 PM UTC-4 Shakrmaker wrote:
>>>>
>>>>> Well, if I'm doing this correctly... when I spin up the 2.14.0.3 
>>>>> docker/latex image and poke around, in:
>>>>> /usr/share/fontconfig/conf.avail/
>>>>>
>>>>> I see in: 40-nonlatin.conf:
>>>>>
>>>>> <!--                                                                                   
>>>>>  
>>>>>   Sans-serif faces                               
>>>>>  -->                                                     
>>>>>         <alias>                                                   
>>>>>                 <family>Arshia</family>
>>>>>                 <default><family>sans-serif</family></default>
>>>>>         </alias>                                         
>>>>>         <alias> 
>>>>>                 <family>Elham</family>
>>>>>                 <default><family>sans-serif</family></default>
>>>>>         </alias>                                         
>>>>>
>>>>> ...and a continued long list of sans serif ^ font family entries.
>>>>>
>>>>> Does this mean they're available as a GitHub Action arg with -V 
>>>>> fontfamily=Elham, etc? I will try that out next.               
>>>>>
>>>>>

-- 
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/f6a86403-c99d-41b3-8568-c4f6aef23812n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 9529 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]                         ` <f6a86403-c99d-41b3-8568-c4f6aef23812n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-07-01 13:52                           ` Pedro P. Palazzo
       [not found]                             ` <A2E180F9-B20C-416D-BFB8-59139ACEB020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Pedro P. Palazzo @ 2021-07-01 13:52 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

OK, there's something weird going on with Pandoc (not the Docker image). I created a test file with the following in the front matter:

---
fontfamily: helvet
header-includes:
- \renewcommand\familydefault{\sfdefault}
---

If I run `pandoc -o myfile.pdf`, it does NOT use Helvetica. However, if I run `pandoc -o myfile.tex` and then `pdflatex myfile`, the document DOES come out in Helvetica. Not sure where to go from here, though.


> Em 01/07/2021, à(s) 03:22, Shakrmaker <tojonmz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> escreveu:
> 
> Oh, and further to my last post in this thread, this is what I see in the CLI on my custom Docker image also. Thanks in advance for any help!
> 
> /opt/texlive/texmf-local # tlmgr info | grep "font pack"
>   arphic: Arphic (Chinese) font packages
> i avantgar: URW "Base 35" font pack for LaTeX
> i bookman: URW "Base 35" font pack for LaTeX
> i collection-metapost: MetaPost and Metafont packages
> i courier: URW "Base 35" font pack for LaTeX
>   grotesq: URW Grotesq font pack for LaTeX
> i helvetic: URW "Base 35" font pack for LaTeX
>   mweights: Support for multiple-weight font packages
> i ncntrsbk: URW "Base 35" font pack for LaTeX
> i palatino: URW "Base 35" font pack for LaTeX
> i symbol: URW "Base 35" font pack for LaTeX
> i times: URW "Base 35" font pack for LaTeX
>   wadalab: Wadalab (Japanese) font packages
> i zapfchan: URW "Base 35" font pack for LaTeX
> i zapfding: URW "Base 35" font pack for LaTeX
> 
> 
> On Wednesday, June 30, 2021 at 7:34:11 PM UTC-4 Shakrmaker wrote:
> Ok, well I built a custom docker image based on:
> pandoc/latex:2.14.0.3
> 
> Then I did this in my custom Docker container, hoping I'd get at least some fonts installed. It appears to install quite a few, and exited normally.
> tlmgr install collection-fontsrecommended
> 
> Then in my custom Docker container CLI, I do this, I look for Helvetica, and get this:
> /opt/texlive/texmf-local # tlmgr search --all "fonts" | grep helv
> helvetic - URW "Base 35" font pack for LaTeX
> helvetic:
>     texmf-dist/fonts/afm/adobe/helvetic/phvb8a.afm
>     texmf-dist/fonts/afm/adobe/helvetic/phvb8an.afm
>     texmf-dist/fonts/afm/adobe/helvetic/phvbo8a.afm
>     texmf-dist/fonts/afm/adobe/helvetic/phvbo8an.afm
>     texmf-dist/fonts/afm/adobe/helvetic/phvr8a.afm
>     ...etc
> 
> I've pushed this custom Docker image to my repo on Docker Hub, and my GitHub Action in another repo loads my custom Docker image, and calls convert_via_pandoc with this arg
>  -V fontfamily=helvet
> 
> While it runs my custom Docker image, and converts the PDF, I still don't get Helvetica, I still get Latin Modern in the PDF. What am I doing wrong?
> 
> Note: I can tell that "helvet" is the desired spelling. Since if I misspell it intentionally, or feed that -V fontamily argument some bogus font family name, the conversion will fail on the missing '.sty'.
> 
> Is there something I still have to configure in my custom Docker container image to use that installed Helvetica font? Or should that tlmgr install collection-fontsrecommended have been sufficient?
> 
> Thanks
> 
> On Wednesday, June 30, 2021 at 3:10:32 PM UTC-4 Shakrmaker wrote:
> Thanks Pedro for confirming. I guess I will look at building a custom docker image with a basic sans serif font installed, and use and maintain that image going forward.
> 
> On Wednesday, June 30, 2021 at 7:07:24 AM UTC-4 pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:
> This is the normal behavior. Latin Modern comes packaged in LaTeX itself. If you need a different font, you can customize your own docker image based on the pandoc/latex image and install the appropriate package (installing packages at runtime has not worked for me), or use --pdf-engine=xelatex and map your fonts directory as a volume onto the docker container. In the latter case, you can no longer use the `uses:` syntax in GitHub Actions, but have to declare it with `run:`.
> 
> Em quarta-feira, 30 de junho de 2021 às 05:11:25 UTC+1, Shakrmaker escreveu:
> Well, when I tried Elham my GitHub action run failed on the font, and when I check these in the factory local docker/latex 2.14.0.3 image, I seem to be coming up empty:
> 
> # ls /usr/share/fonts
> ls: /usr/share/fonts: No such file or directory
> # ls /usr/local/share/fonts
> ls: /usr/local/share/fonts: No such file or directory
> # ls ~./fonts
> ls: ~./fonts: No such file or directory
> # fc-list
> #
> 
> The interesting thing to a newbie like me - is where is pandoc getting its default Latin Modern from the docker/latex image? Since the docs say for this latex variable:
> 
> https://pandoc.org/MANUAL.html#variables-for-latex > Fonts:
> "fontfamily font package for use with pdflatex: The default is Latin Modern."
> 
> On Tuesday, June 29, 2021 at 11:50:21 PM UTC-4 Shakrmaker wrote:
> Well, if I'm doing this correctly... when I spin up the 2.14.0.3 docker/latex image and poke around, in:
> /usr/share/fontconfig/conf.avail/
> 
> I see in: 40-nonlatin.conf:
> 
> <!--                                                                                    
>   Sans-serif faces                               
>  -->                                                     
>         <alias>                                                   
>                 <family>Arshia</family>
>                 <default><family>sans-serif</family></default>
>         </alias>                                         
>         <alias> 
>                 <family>Elham</family>
>                 <default><family>sans-serif</family></default>
>         </alias>                                         
> 
> ...and a continued long list of sans serif ^ font family entries.
> 
> Does this mean they're available as a GitHub Action arg with -V fontfamily=Elham, etc? I will try that out next.               
> 
> 
> -- 
> You received this message because you are subscribed to a topic in the Google Groups "pandoc-discuss" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/topic/pandoc-discuss/XrbnaQl88Dk/unsubscribe.
> To unsubscribe from this group and all its topics, 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/f6a86403-c99d-41b3-8568-c4f6aef23812n%40googlegroups.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/A2E180F9-B20C-416D-BFB8-59139ACEB020%40gmail.com.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]                             ` <A2E180F9-B20C-416D-BFB8-59139ACEB020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2021-07-01 15:56                               ` John MacFarlane
       [not found]                                 ` <m24kdejaee.fsf-jF64zX8BO0+FqBokazbCQ6OPv3vYUT2dxr7GGTnW70NeoWH0uzbU5w@public.gmane.org>
  2021-07-01 20:37                               ` Shakrmaker
  1 sibling, 1 reply; 17+ messages in thread
From: John MacFarlane @ 2021-07-01 15:56 UTC (permalink / raw)
  To: Pedro P. Palazzo, pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


I do get Helvetica font when I try this (pandoc test.md -o test.pdf).

"Pedro P. Palazzo" <pedro.palazzo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:

> OK, there's something weird going on with Pandoc (not the Docker image). I created a test file with the following in the front matter:
>
> ---
> fontfamily: helvet
> header-includes:
> - \renewcommand\familydefault{\sfdefault}
> ---
>
> If I run `pandoc -o myfile.pdf`, it does NOT use Helvetica. However, if I run `pandoc -o myfile.tex` and then `pdflatex myfile`, the document DOES come out in Helvetica. Not sure where to go from here, though.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]                             ` <A2E180F9-B20C-416D-BFB8-59139ACEB020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  2021-07-01 15:56                               ` John MacFarlane
@ 2021-07-01 20:37                               ` Shakrmaker
       [not found]                                 ` <1e628991-6606-4d72-80c9-7489b9d08518n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  1 sibling, 1 reply; 17+ messages in thread
From: Shakrmaker @ 2021-07-01 20:37 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 7431 bytes --]

Here's the -V arguments I'm calling when running convert_via_pandoc with my custom 
Docker image 
<https://hub.docker.com/repository/docker/tojdk/pandoc-latex-fonts>. The -V 
margin-[side] arguments work perfectly, I can change them, or omit them, 
and those changes are reflected in the output PDF. But the -V 
fontfamily=helvet argument appears to be ignored.

Some portions are blurred for privacy (repo, -o output file path, input 
file path), see attached image from my action log.

Thanks for any help!

On Thursday, July 1, 2021 at 9:52:53 AM UTC-4 pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:

> OK, there's something weird going on with Pandoc (not the Docker image). I 
> created a test file with the following in the front matter:
>
> ---
> fontfamily: helvet
> header-includes:
> - \renewcommand\familydefault{\sfdefault}
> ---
>
> If I run `pandoc -o myfile.pdf`, it does NOT use Helvetica. However, if I 
> run `pandoc -o myfile.tex` and then `pdflatex myfile`, the document DOES 
> come out in Helvetica. Not sure where to go from here, though.
>
>
> > Em 01/07/2021, à(s) 03:22, Shakrmaker <toj...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> escreveu:
> > 
> > Oh, and further to my last post in this thread, this is what I see in 
> the CLI on my custom Docker image also. Thanks in advance for any help!
> > 
> > /opt/texlive/texmf-local # tlmgr info | grep "font pack"
> > arphic: Arphic (Chinese) font packages
> > i avantgar: URW "Base 35" font pack for LaTeX
> > i bookman: URW "Base 35" font pack for LaTeX
> > i collection-metapost: MetaPost and Metafont packages
> > i courier: URW "Base 35" font pack for LaTeX
> > grotesq: URW Grotesq font pack for LaTeX
> > i helvetic: URW "Base 35" font pack for LaTeX
> > mweights: Support for multiple-weight font packages
> > i ncntrsbk: URW "Base 35" font pack for LaTeX
> > i palatino: URW "Base 35" font pack for LaTeX
> > i symbol: URW "Base 35" font pack for LaTeX
> > i times: URW "Base 35" font pack for LaTeX
> > wadalab: Wadalab (Japanese) font packages
> > i zapfchan: URW "Base 35" font pack for LaTeX
> > i zapfding: URW "Base 35" font pack for LaTeX
> > 
> > 
> > On Wednesday, June 30, 2021 at 7:34:11 PM UTC-4 Shakrmaker wrote:
> > Ok, well I built a custom docker image based on:
> > pandoc/latex:2.14.0.3
> > 
> > Then I did this in my custom Docker container, hoping I'd get at least 
> some fonts installed. It appears to install quite a few, and exited 
> normally.
> > tlmgr install collection-fontsrecommended
> > 
> > Then in my custom Docker container CLI, I do this, I look for Helvetica, 
> and get this:
> > /opt/texlive/texmf-local # tlmgr search --all "fonts" | grep helv
> > helvetic - URW "Base 35" font pack for LaTeX
> > helvetic:
> > texmf-dist/fonts/afm/adobe/helvetic/phvb8a.afm
> > texmf-dist/fonts/afm/adobe/helvetic/phvb8an.afm
> > texmf-dist/fonts/afm/adobe/helvetic/phvbo8a.afm
> > texmf-dist/fonts/afm/adobe/helvetic/phvbo8an.afm
> > texmf-dist/fonts/afm/adobe/helvetic/phvr8a.afm
> > ...etc
> > 
> > I've pushed this custom Docker image to my repo on Docker Hub, and my 
> GitHub Action in another repo loads my custom Docker image, and calls 
> convert_via_pandoc with this arg
> > -V fontfamily=helvet
> > 
> > While it runs my custom Docker image, and converts the PDF, I still 
> don't get Helvetica, I still get Latin Modern in the PDF. What am I doing 
> wrong?
> > 
> > Note: I can tell that "helvet" is the desired spelling. Since if I 
> misspell it intentionally, or feed that -V fontamily argument some bogus 
> font family name, the conversion will fail on the missing '.sty'.
> > 
> > Is there something I still have to configure in my custom Docker 
> container image to use that installed Helvetica font? Or should that tlmgr 
> install collection-fontsrecommended have been sufficient?
> > 
> > Thanks
> > 
> > On Wednesday, June 30, 2021 at 3:10:32 PM UTC-4 Shakrmaker wrote:
> > Thanks Pedro for confirming. I guess I will look at building a custom 
> docker image with a basic sans serif font installed, and use and maintain 
> that image going forward.
> > 
> > On Wednesday, June 30, 2021 at 7:07:24 AM UTC-4 pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
> wrote:
> > This is the normal behavior. Latin Modern comes packaged in LaTeX 
> itself. If you need a different font, you can customize your own docker 
> image based on the pandoc/latex image and install the appropriate package 
> (installing packages at runtime has not worked for me), or use 
> --pdf-engine=xelatex and map your fonts directory as a volume onto the 
> docker container. In the latter case, you can no longer use the `uses:` 
> syntax in GitHub Actions, but have to declare it with `run:`.
> > 
> > Em quarta-feira, 30 de junho de 2021 às 05:11:25 UTC+1, Shakrmaker 
> escreveu:
> > Well, when I tried Elham my GitHub action run failed on the font, and 
> when I check these in the factory local docker/latex 2.14.0.3 image, I seem 
> to be coming up empty:
> > 
> > # ls /usr/share/fonts
> > ls: /usr/share/fonts: No such file or directory
> > # ls /usr/local/share/fonts
> > ls: /usr/local/share/fonts: No such file or directory
> > # ls ~./fonts
> > ls: ~./fonts: No such file or directory
> > # fc-list
> > #
> > 
> > The interesting thing to a newbie like me - is where is pandoc getting 
> its default Latin Modern from the docker/latex image? Since the docs say 
> for this latex variable:
> > 
> > https://pandoc.org/MANUAL.html#variables-for-latex > Fonts:
> > "fontfamily font package for use with pdflatex: The default is Latin 
> Modern."
> > 
> > On Tuesday, June 29, 2021 at 11:50:21 PM UTC-4 Shakrmaker wrote:
> > Well, if I'm doing this correctly... when I spin up the 2.14.0.3 
> docker/latex image and poke around, in:
> > /usr/share/fontconfig/conf.avail/
> > 
> > I see in: 40-nonlatin.conf:
> > 
> > <!-- 
> > Sans-serif faces 
> > --> 
> > <alias> 
> > <family>Arshia</family>
> > <default><family>sans-serif</family></default>
> > </alias> 
> > <alias> 
> > <family>Elham</family>
> > <default><family>sans-serif</family></default>
> > </alias> 
> > 
> > ...and a continued long list of sans serif ^ font family entries.
> > 
> > Does this mean they're available as a GitHub Action arg with -V 
> fontfamily=Elham, etc? I will try that out next. 
> > 
> > 
> > -- 
> > You received this message because you are subscribed to a topic in the 
> Google Groups "pandoc-discuss" group.
> > To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/pandoc-discuss/XrbnaQl88Dk/unsubscribe.
> > To unsubscribe from this group and all its topics, send an email to 
> pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> > To view this discussion on the web visit 
> https://groups.google.com/d/msgid/pandoc-discuss/f6a86403-c99d-41b3-8568-c4f6aef23812n%40googlegroups.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/1e628991-6606-4d72-80c9-7489b9d08518n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 10404 bytes --]

[-- Attachment #2: dockerRun-fontFamilyArgument_jul1_21.jpg --]
[-- Type: image/jpeg, Size: 273060 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]                                 ` <1e628991-6606-4d72-80c9-7489b9d08518n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-07-06 15:56                                   ` Shakr Maker
  0 siblings, 0 replies; 17+ messages in thread
From: Shakr Maker @ 2021-07-06 15:56 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 1186 bytes --]

I've tried which I believe is your guys' way; using front matter via *-d 
FILE* per
https://pandoc.org/MANUAL.html#general-options

When I use that argument below with a valid data file that pandoc finds, in 
the GitHub Action run with my custom Docker image 
<https://hub.docker.com/repository/docker/tojdk/pandoc-latex-fonts> (note: 
which again.. is just the generic pandoc 2.14.0.3 docker image with tlmgr 
install collection-fontsrecommended applied to it and using default latex 
converter):

-d pandoc-pdf-config.yaml

Whose file file contents above ^  contains just this:
---
fontfamily: helvet
...

I get this in the run:

Error parsing pandoc-pdf-config.yaml line 2 column 0:
Unknown option "fontfamily"

Thoughts? Am I doing something wrong?

Thanks for any help!

-- 
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/fd6c8b85-3f2b-4b27-96c0-dd6da496b7a5n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 1903 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]                                 ` <m24kdejaee.fsf-jF64zX8BO0+FqBokazbCQ6OPv3vYUT2dxr7GGTnW70NeoWH0uzbU5w@public.gmane.org>
@ 2021-07-06 21:51                                   ` Shakr Maker
       [not found]                                     ` <e14acfcd-b5da-42ef-9261-fc5a0ab0953bn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Shakr Maker @ 2021-07-06 21:51 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 1887 bytes --]

Hi John, Pedro,

Where (in what file) are you defining this yaml when you get your Helvetica 
result? Are you adding this yaml to your .md file? Or some other file? How 
are you calling it and with what arg?
---
fontfamily: helvet
...

I've tried passing it in as *-d* (which it apparently isn't, based on 
https://pandoc.org/MANUAL.html#default-files)
I've tried using *--metadata-file* (which it perhaps isn't and appears to 
ignore https://pandoc.org/MANUAL.html#option--metadata-file)
I've tried passing it in as a sequential yaml file per 
(https://pandoc.org/MANUAL.html#extension-yaml_metadata_block)
And I earlier tried the straight argument without the yaml, *-V 
fontfamily=helvet*

None of them work. I still don't get Helvetica.

Thanks for any help!



On Thursday, July 1, 2021 at 11:56:24 AM UTC-4 John MacFarlane wrote:

>
> I do get Helvetica font when I try this (pandoc test.md -o test.pdf).
>
> "Pedro P. Palazzo" <pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:
>
> > OK, there's something weird going on with Pandoc (not the Docker image). 
> I created a test file with the following in the front matter:
> >
> > ---
> > fontfamily: helvet
> > header-includes:
> > - \renewcommand\familydefault{\sfdefault}
> > ---
> >
> > If I run `pandoc -o myfile.pdf`, it does NOT use Helvetica. However, if 
> I run `pandoc -o myfile.tex` and then `pdflatex myfile`, the document DOES 
> come out in Helvetica. Not sure where to go from here, though.
>
>

-- 
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/e14acfcd-b5da-42ef-9261-fc5a0ab0953bn%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 2789 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]                                     ` <e14acfcd-b5da-42ef-9261-fc5a0ab0953bn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-07-07  7:21                                       ` BPJ
       [not found]                                         ` <CADAJKhCyYv67UAEBG4fWr_MbETy3mQ1gCuyG57G=5OT9btUDpw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: BPJ @ 2021-07-07  7:21 UTC (permalink / raw)
  To: pandoc-discuss

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

Reading the relevant parts of the manual should clear things up:

https://pandoc.org/MANUAL.html#option--defaults

https://pandoc.org/MANUAL.html#default-files

I always use XeLaTeX but I think that fontfamily should go in the metadata
section of a defaults file:

``````yaml
metadata:
  fontfamily: whatever
  fontfamilyoptions:
    - 'option=value'
``````

Using XeLaTeX (`pdf-engine: xelatex` in a defaults file or
`--pdf-engine=xelatex` on the command line) along with `mainfont:
Helvetica` would probably solve your problem instantly provided the system
in your docker image has this font installed (or you might install Noto
Sans as a very good alternative if a free Helvetica OTF/TTF version isn't
available). However XeLaTeX is considerably slower than pdfLaTeX which may
matter if you are serving this live.


Den tis 6 juli 2021 23:51Shakr Maker <shakrmaker-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:

> Hi John, Pedro,
>
> Where (in what file) are you defining this yaml when you get your
> Helvetica result? Are you adding this yaml to your .md file? Or some other
> file? How are you calling it and with what arg?
> ---
> fontfamily: helvet
> ...
>
> I've tried passing it in as *-d* (which it apparently isn't, based on
> https://pandoc.org/MANUAL.html#default-files)
> I've tried using *--metadata-file* (which it perhaps isn't and appears to
> ignore https://pandoc.org/MANUAL.html#option--metadata-file)
> I've tried passing it in as a sequential yaml file per (
> https://pandoc.org/MANUAL.html#extension-yaml_metadata_block)
> And I earlier tried the straight argument without the yaml, *-V
> fontfamily=helvet*
>
> None of them work. I still don't get Helvetica.
>
> Thanks for any help!
>
>
>
> On Thursday, July 1, 2021 at 11:56:24 AM UTC-4 John MacFarlane wrote:
>
>>
>> I do get Helvetica font when I try this (pandoc test.md -o test.pdf).
>>
>> "Pedro P. Palazzo" <pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:
>>
>> > OK, there's something weird going on with Pandoc (not the Docker
>> image). I created a test file with the following in the front matter:
>> >
>> > ---
>> > fontfamily: helvet
>> > header-includes:
>> > - \renewcommand\familydefault{\sfdefault}
>> > ---
>> >
>> > If I run `pandoc -o myfile.pdf`, it does NOT use Helvetica. However, if
>> I run `pandoc -o myfile.tex` and then `pdflatex myfile`, the document DOES
>> come out in Helvetica. Not sure where to go from here, though.
>>
>> --
> 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/e14acfcd-b5da-42ef-9261-fc5a0ab0953bn%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/e14acfcd-b5da-42ef-9261-fc5a0ab0953bn%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CADAJKhCyYv67UAEBG4fWr_MbETy3mQ1gCuyG57G%3D5OT9btUDpw%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]                                         ` <CADAJKhCyYv67UAEBG4fWr_MbETy3mQ1gCuyG57G=5OT9btUDpw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2021-07-07 21:16                                           ` Shakr Maker
  0 siblings, 0 replies; 17+ messages in thread
From: Shakr Maker @ 2021-07-07 21:16 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 4350 bytes --]

Hi BP,

Thanks for the advice, but yes, I've spent days and days reading, and 
trying and experimenting with all of the listed options and arguments. It's 
astonishing something so simple as setting a font family could take such a 
massive amount of time. Regarding use of -d

https://pandoc.org/MANUAL.html#default-files says:
*"Here is a sample defaults file demonstrating all of the fields that may 
be used:"*
[code block]

fontfamily is not included ^ in that code block above, of valid metadata or 
defaults values.

If you or anyone has *a working local version* using pdflatex, I'd love to 
see:

1. Your *exact* pandoc command used
2. Your *exact* yaml file if one is use
3. The argument you are using to call that yaml

Thanks!



On Wednesday, July 7, 2021 at 3:21:50 AM UTC-4 BP wrote:

> Reading the relevant parts of the manual should clear things up:
>
> https://pandoc.org/MANUAL.html#option--defaults
>
> https://pandoc.org/MANUAL.html#default-files
>
> I always use XeLaTeX but I think that fontfamily should go in the metadata 
> section of a defaults file:
>
> ``````yaml
> metadata:
>   fontfamily: whatever
>   fontfamilyoptions:
>     - 'option=value'
> ``````
>
> Using XeLaTeX (`pdf-engine: xelatex` in a defaults file or 
> `--pdf-engine=xelatex` on the command line) along with `mainfont: 
> Helvetica` would probably solve your problem instantly provided the system 
> in your docker image has this font installed (or you might install Noto 
> Sans as a very good alternative if a free Helvetica OTF/TTF version isn't 
> available). However XeLaTeX is considerably slower than pdfLaTeX which may 
> matter if you are serving this live.
>
>
> Den tis 6 juli 2021 23:51Shakr Maker <shakr...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>> Hi John, Pedro,
>>
>> Where (in what file) are you defining this yaml when you get your 
>> Helvetica result? Are you adding this yaml to your .md file? Or some other 
>> file? How are you calling it and with what arg?
>> ---
>> fontfamily: helvet
>> ...
>>
>> I've tried passing it in as *-d* (which it apparently isn't, based on 
>> https://pandoc.org/MANUAL.html#default-files)
>> I've tried using *--metadata-file* (which it perhaps isn't and appears 
>> to ignore https://pandoc.org/MANUAL.html#option--metadata-file)
>> I've tried passing it in as a sequential yaml file per (
>> https://pandoc.org/MANUAL.html#extension-yaml_metadata_block)
>> And I earlier tried the straight argument without the yaml, *-V 
>> fontfamily=helvet*
>>
>> None of them work. I still don't get Helvetica.
>>
>> Thanks for any help!
>>
>>
>>
>> On Thursday, July 1, 2021 at 11:56:24 AM UTC-4 John MacFarlane wrote:
>>
>>>
>>> I do get Helvetica font when I try this (pandoc test.md -o test.pdf). 
>>>
>>> "Pedro P. Palazzo" <pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes: 
>>>
>>> > OK, there's something weird going on with Pandoc (not the Docker 
>>> image). I created a test file with the following in the front matter: 
>>> > 
>>> > --- 
>>> > fontfamily: helvet 
>>> > header-includes: 
>>> > - \renewcommand\familydefault{\sfdefault} 
>>> > --- 
>>> > 
>>> > If I run `pandoc -o myfile.pdf`, it does NOT use Helvetica. However, 
>>> if I run `pandoc -o myfile.tex` and then `pdflatex myfile`, the document 
>>> DOES come out in Helvetica. Not sure where to go from here, though. 
>>>
>>> -- 
>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/pandoc-discuss/e14acfcd-b5da-42ef-9261-fc5a0ab0953bn%40googlegroups.com 
>> <https://groups.google.com/d/msgid/pandoc-discuss/e14acfcd-b5da-42ef-9261-fc5a0ab0953bn%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>

-- 
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/05b006e2-3858-4537-b7ac-2763bd9190adn%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 8336 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found] ` <bb821641-7fc9-420f-907f-36d198800d84n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2021-06-30  3:50   ` Shakrmaker
@ 2021-07-07 22:05   ` Pedro P. Palazzo
       [not found]     ` <3c5dc4f1-2030-45a0-abb3-387bfee5014en-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  1 sibling, 1 reply; 17+ messages in thread
From: Pedro P. Palazzo @ 2021-07-07 22:05 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 1711 bytes --]

I have been using the EB-Garamond font package by setting it up in my 
defaults file under variables, not metadata:

variables:
  font-family: ebgaramond

However, I have had no such luck with the Helvetica package.

Em terça-feira, 29 de junho de 2021 às 23:44:16 UTC+1, Shakrmaker escreveu:

> Hi Everyone,
>
> Does anyone know how can I determine the list of available default, 
> included fonts (limited as they are) inside a factory 
> <https://hub.docker.com/r/pandoc/latex/tags> pandoc/latex docker image; 
> and/or list them when running a GitHub Action?
>
> eg.
>
> jobs:
>   convert_via_pandoc:
>     runs-on: ubuntu-18.04
>       steps:
>         uses: docker://pandoc/latex:2.14.0.1
>
> Other than trying multiple convert attempts with pandoc -V 
> fontfamily=[wild guessing] and hoping I hit a valid one :)
>
> Basically I'd just like to set the font family to a factory san-serif font 
> and be done (if anyone happens to know that list) . Or somehow I can list 
> the available fonts inside these pandoc docker images.
>
> If the latter, would I spin up the docker image separately from a GitHub 
> Action, access the container OS and fc-list? Or?
>
> Sorry, I'm not super familiar with all this stuff, obviously.
>
> Thanks in advance.
>

-- 
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/3c5dc4f1-2030-45a0-abb3-387bfee5014en%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 2884 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]     ` <3c5dc4f1-2030-45a0-abb3-387bfee5014en-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-07-08  7:33       ` BPJ
       [not found]         ` <CADAJKhA2W91wizTEtRu0b7QsYnMUFbMtj9y8akhK8uvy=sq4JA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: BPJ @ 2021-07-08  7:33 UTC (permalink / raw)
  To: pandoc-discuss

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

It may be because the Helvetica found on the system is a Type 1 font rather
than an OTF or TTF font, or it is not found at all. I don't know if that
matters to pdfTeX but IIRC it matters to XeTeX so maybe. That is why I
suggested using some other good sans font.

Den tors 8 juli 2021 00:06Pedro P. Palazzo <pedro.palazzo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:

> I have been using the EB-Garamond font package by setting it up in my
> defaults file under variables, not metadata:
>
> variables:
>   font-family: ebgaramond
>
> However, I have had no such luck with the Helvetica package.
>
> Em terça-feira, 29 de junho de 2021 às 23:44:16 UTC+1, Shakrmaker escreveu:
>
>> Hi Everyone,
>>
>> Does anyone know how can I determine the list of available default,
>> included fonts (limited as they are) inside a factory
>> <https://hub.docker.com/r/pandoc/latex/tags> pandoc/latex docker image;
>> and/or list them when running a GitHub Action?
>>
>> eg.
>>
>> jobs:
>>   convert_via_pandoc:
>>     runs-on: ubuntu-18.04
>>       steps:
>>         uses: docker://pandoc/latex:2.14.0.1
>>
>> Other than trying multiple convert attempts with pandoc -V
>> fontfamily=[wild guessing] and hoping I hit a valid one :)
>>
>> Basically I'd just like to set the font family to a factory san-serif
>> font and be done (if anyone happens to know that list) . Or somehow I can
>> list the available fonts inside these pandoc docker images.
>>
>> If the latter, would I spin up the docker image separately from a GitHub
>> Action, access the container OS and fc-list? Or?
>>
>> Sorry, I'm not super familiar with all this stuff, obviously.
>>
>> Thanks in advance.
>>
> --
> 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/3c5dc4f1-2030-45a0-abb3-387bfee5014en%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/3c5dc4f1-2030-45a0-abb3-387bfee5014en%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CADAJKhA2W91wizTEtRu0b7QsYnMUFbMtj9y8akhK8uvy%3Dsq4JA%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: Available default fonts in a factory pandoc/latex Docker image?
       [not found]         ` <CADAJKhA2W91wizTEtRu0b7QsYnMUFbMtj9y8akhK8uvy=sq4JA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2021-07-08 13:50           ` Shakr Maker
  0 siblings, 0 replies; 17+ messages in thread
From: Shakr Maker @ 2021-07-08 13:50 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 3991 bytes --]

I did this previously in my custom Docker container, hoping I'd get at 
least some fonts installed. It appeared to install quite a few, and exited 
normally.
tlmgr install collection-fontsrecommended

And this is what is available to me.
/opt/texlive/texmf-local # tlmgr info | grep "font pack"
  arphic: Arphic (Chinese) font packages
i avantgar: URW "Base 35" font pack for LaTeX
i bookman: URW "Base 35" font pack for LaTeX
i collection-metapost: MetaPost and Metafont packages
i courier: URW "Base 35" font pack for LaTeX
  grotesq: URW Grotesq font pack for LaTeX
i helvetic: URW "Base 35" font pack for LaTeX
  mweights: Support for multiple-weight font packages
i ncntrsbk: URW "Base 35" font pack for LaTeX
i palatino: URW "Base 35" font pack for LaTeX
i symbol: URW "Base 35" font pack for LaTeX
i times: URW "Base 35" font pack for LaTeX
  wadalab: Wadalab (Japanese) font packages
i zapfchan: URW "Base 35" font pack for LaTeX
i zapfding: URW "Base 35" font pack for LaTeX

If Helvetica doesn't work, I don't expect any of the others to either.

I had tried Palatino and Times and both were ignored also.


On Thursday, July 8, 2021 at 3:34:06 AM UTC-4 BP wrote:

> It may be because the Helvetica found on the system is a Type 1 font 
> rather than an OTF or TTF font, or it is not found at all. I don't know if 
> that matters to pdfTeX but IIRC it matters to XeTeX so maybe. That is why I 
> suggested using some other good sans font.
>
> Den tors 8 juli 2021 00:06Pedro P. Palazzo <pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>> I have been using the EB-Garamond font package by setting it up in my 
>> defaults file under variables, not metadata:
>>
>> variables:
>>   font-family: ebgaramond
>>
>> However, I have had no such luck with the Helvetica package.
>>
>> Em terça-feira, 29 de junho de 2021 às 23:44:16 UTC+1, Shakrmaker 
>> escreveu:
>>
>>> Hi Everyone,
>>>
>>> Does anyone know how can I determine the list of available default, 
>>> included fonts (limited as they are) inside a factory 
>>> <https://hub.docker.com/r/pandoc/latex/tags> pandoc/latex docker image; 
>>> and/or list them when running a GitHub Action?
>>>
>>> eg.
>>>
>>> jobs:
>>>   convert_via_pandoc:
>>>     runs-on: ubuntu-18.04
>>>       steps:
>>>         uses: docker://pandoc/latex:2.14.0.1
>>>
>>> Other than trying multiple convert attempts with pandoc -V 
>>> fontfamily=[wild guessing] and hoping I hit a valid one :)
>>>
>>> Basically I'd just like to set the font family to a factory san-serif 
>>> font and be done (if anyone happens to know that list) . Or somehow I can 
>>> list the available fonts inside these pandoc docker images.
>>>
>>> If the latter, would I spin up the docker image separately from a GitHub 
>>> Action, access the container OS and fc-list? Or?
>>>
>>> Sorry, I'm not super familiar with all this stuff, obviously.
>>>
>>> Thanks in advance.
>>>
>> -- 
>>
> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/pandoc-discuss/3c5dc4f1-2030-45a0-abb3-387bfee5014en%40googlegroups.com 
>> <https://groups.google.com/d/msgid/pandoc-discuss/3c5dc4f1-2030-45a0-abb3-387bfee5014en%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>

-- 
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/4d3b1af1-4890-49bb-b2f2-0365b5bf3c09n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 6690 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2021-07-08 13:50 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-29 22:44 Available default fonts in a factory pandoc/latex Docker image? Shakrmaker
     [not found] ` <bb821641-7fc9-420f-907f-36d198800d84n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-06-30  3:50   ` Shakrmaker
     [not found]     ` <8a071f76-add3-4917-aa67-6fd73402d3f6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-06-30  4:11       ` Shakrmaker
     [not found]         ` <1d9e9bc2-6820-4b57-9729-ef7c170cbd43n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-06-30 11:07           ` Pedro P. Palazzo
     [not found]             ` <dbe68bc0-6b51-4c28-81ac-ae4c3e4d8743n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-06-30 19:10               ` Shakrmaker
     [not found]                 ` <4ed25c3b-269a-4564-8eb5-42de0c7c0202n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-06-30 23:34                   ` Shakrmaker
     [not found]                     ` <58a94bbf-36e1-415f-b928-bb0abcf4f9c6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-07-01  2:22                       ` Shakrmaker
     [not found]                         ` <f6a86403-c99d-41b3-8568-c4f6aef23812n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-07-01 13:52                           ` Pedro P. Palazzo
     [not found]                             ` <A2E180F9-B20C-416D-BFB8-59139ACEB020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2021-07-01 15:56                               ` John MacFarlane
     [not found]                                 ` <m24kdejaee.fsf-jF64zX8BO0+FqBokazbCQ6OPv3vYUT2dxr7GGTnW70NeoWH0uzbU5w@public.gmane.org>
2021-07-06 21:51                                   ` Shakr Maker
     [not found]                                     ` <e14acfcd-b5da-42ef-9261-fc5a0ab0953bn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-07-07  7:21                                       ` BPJ
     [not found]                                         ` <CADAJKhCyYv67UAEBG4fWr_MbETy3mQ1gCuyG57G=5OT9btUDpw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2021-07-07 21:16                                           ` Shakr Maker
2021-07-01 20:37                               ` Shakrmaker
     [not found]                                 ` <1e628991-6606-4d72-80c9-7489b9d08518n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-07-06 15:56                                   ` Shakr Maker
2021-07-07 22:05   ` Pedro P. Palazzo
     [not found]     ` <3c5dc4f1-2030-45a0-abb3-387bfee5014en-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-07-08  7:33       ` BPJ
     [not found]         ` <CADAJKhA2W91wizTEtRu0b7QsYnMUFbMtj9y8akhK8uvy=sq4JA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2021-07-08 13:50           ` Shakr Maker

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).