36

Hi I tried to install the package by

tlmgr install dsfont

but I only get

tlmgr: package repository http://ftp.gwdg.de/pub/ctan/systems/texlive/tlnet
package dsfont not present in package repository.

I also installed the package doublestroke since I read somewhere that this package contains dsfont, but if I include dsfont I still get an error message..

Does anyone know how to help me?

Adam
  • 361

3 Answers3

51

On Debian based TeX distribution you can try

sudo apt-get install texlive-fonts-extra 
egreg
  • 1,121,712
user41298
  • 519
  • Welcome to TeX.SX! You can have a look at our starter guide to familiarize yourself further with our format. Addendum: package doublestroke would be installed with this tweak which has dsfont – texenthusiast Nov 19 '13 at 18:44
  • 2
    Does anyone know how I could have found this, sans Google? apt-cache search dsfont didn't come up with anything. – user1717828 May 02 '16 at 15:49
  • @user1717828 I generally use an error message with double quotes around it. In this case it was: "! LaTeX Error: File `dsfont.sty' not found." from Anki. This was the top link. – nclark May 07 '19 at 00:54
  • 2
    I just need only this dsfont and I know that I can copy the sty file in my current folder. But is there any otherway? Because this causes 1,415 MB extra space. – David Aug 31 '21 at 04:38
29

TeX Live

The distribution package name is doublestroke in TeX Live for the LaTeX package dsfont.

From tlpkg/texlive.tlpdb:

name doublestroke
category Package
revision 15878
shortdesc Typeset mathematical double stroke symbols.
longdesc A font based on Computer Modern Roman useful for typesetting
longdesc the mathematical symbols for the natural numbers (N), whole
longdesc numbers (Z), rational numbers (Q), real numbers (R) and complex
longdesc numbers (C); coverage includes all Roman capital letters, '1',
longdesc 'h' and 'k'. The font is available both as Metafont source and
longdesc in Adobe Type 1 format, and LaTeX macros for its use are
longdesc provided. The fonts appear in the blackboard bold sampler.
execute addMap dstroke.map
docfiles size=31
 texmf-dist/doc/fonts/doublestroke/README details="Package Readme"
 texmf-dist/doc/fonts/doublestroke/dsdoc.pdf details="Package documentation"
 texmf-dist/doc/fonts/doublestroke/dsdoc.tex
runfiles size=58
 texmf-dist/fonts/map/dvips/doublestroke/dstroke.map
 texmf-dist/fonts/source/public/doublestroke/dsrom.mf
 texmf-dist/fonts/source/public/doublestroke/dsrom10.mf
 texmf-dist/fonts/source/public/doublestroke/dsrom12.mf
 texmf-dist/fonts/source/public/doublestroke/dsrom8.mf
 texmf-dist/fonts/source/public/doublestroke/dsromo.mf
 texmf-dist/fonts/source/public/doublestroke/dsromu.mf
 texmf-dist/fonts/source/public/doublestroke/dsss10.mf
 texmf-dist/fonts/source/public/doublestroke/dsss12.mf
 texmf-dist/fonts/source/public/doublestroke/dsss8.mf
 texmf-dist/fonts/tfm/public/doublestroke/dsrom10.tfm
 texmf-dist/fonts/tfm/public/doublestroke/dsrom12.tfm
 texmf-dist/fonts/tfm/public/doublestroke/dsrom8.tfm
 texmf-dist/fonts/tfm/public/doublestroke/dsss10.tfm
 texmf-dist/fonts/tfm/public/doublestroke/dsss12.tfm
 texmf-dist/fonts/tfm/public/doublestroke/dsss8.tfm
 texmf-dist/fonts/type1/public/doublestroke/dsrom10.pfb
 texmf-dist/fonts/type1/public/doublestroke/dsrom12.pfb
 texmf-dist/fonts/type1/public/doublestroke/dsrom8.pfb
 texmf-dist/fonts/type1/public/doublestroke/dsss10.pfb
 texmf-dist/fonts/type1/public/doublestroke/dsss12.pfb
 texmf-dist/fonts/type1/public/doublestroke/dsss8.pfb
 texmf-dist/tex/latex/doublestroke/Udsrom.fd
 texmf-dist/tex/latex/doublestroke/Udsss.fd
 texmf-dist/tex/latex/doublestroke/dsfont.sty
catalogue-ctan /fonts/doublestroke
catalogue-date 2012-04-25 18:00:26 +0200
catalogue-license other-free
catalogue-version 1.111

MiKTeX

doublestroke is the distribution package name in MiKTeX for the LaTeX package dsfont.

Heiko Oberdiek
  • 271,626
  • very helpful! frantically & unsuccessfully searched in my MiKTeX for doublestroke – Reinhard Neuwirth Aug 11 '15 at 19:56
  • You should add how to install it from the command line. – relG Sep 01 '17 at 12:26
  • What is the command line that you claim it contains? I think dsfont is contained in doublestroke. – relG Sep 01 '17 at 18:32
  • @relG Yes, the LaTeX package dsfont is in the TeX Live distribution package doublestroke. The file name for a LaTeX packages is the package name with extension .sty. As you can see in my answer, the file texmf-dist/tex/latex/doublestroke/dsfont.sty is part of doublestroke. Regarding the command line, I do not know your operating system, which TeX distribution is installed, and, in case of TeX Live, whether tlmgr is available (some Linux distributions omit it). Best, ask a new question with all the details and describe the problem you have. – Heiko Oberdiek Sep 01 '17 at 19:18
3

On Fedora 21:

yum install texlive-doublestroke.noarch
Wok
  • 267