Using fdsymbol and fontspecHow to use system font for equation in XeLaTeX?Xelatex / Fontspec how to load fonts directly from diskfile (Postscript Type 1 fonts)Using a handwriting font from myscriptfont.comUse an *.otf font with fontspecLatest MiKTex update breaks with fontspecsetmainfont error with most recent fontspec versionXelatex Fontspec Cannot Find FontsPlacing xelatex.exe Intermediate and Output Files in Another Folderfontenc vs fontspec with XeLaTeXWho changed my Chinese character?Fontspec crash with xelatex

Is "cogitate" used appropriately in "I cogitate that success relies on hard work"?

Is this Paypal Github SDK reference really a dangerous site?

How to educate team mate to take screenshots for bugs with out unwanted stuff

Sort array by month and year

How does a sound wave propagate?

How do you make a gun that shoots melee weapons and/or swords?

What does it take to become a wilderness skills guide as a business?

Use Mercury as quenching liquid for swords?

Can I negotiate a patent idea for a raise, under French law?

Trigger on Custom Object Share

What would be the most expensive material to an intergalactic society?

Insult for someone who "doesn't know anything"

What is the orbit and expected lifetime of Crew Dragon trunk?

Has a sovereign Communist government ever run, and conceded loss, on a fair election?

A running toilet that stops itself

Help! My Character is too much for her story!

Did Amazon pay $0 in taxes last year?

Can Witch Sight see through Mirror Image?

“I had a flat in the centre of town, but I didn’t like living there, so …”

Boss Telling direct supervisor I snitched

Are small insurances worth it?

How to install "rounded" brake pads

Is there a math expression equivalent to the conditional ternary operator?

Short story about cities being connected by a conveyor belt



Using fdsymbol and fontspec


How to use system font for equation in XeLaTeX?Xelatex / Fontspec how to load fonts directly from diskfile (Postscript Type 1 fonts)Using a handwriting font from myscriptfont.comUse an *.otf font with fontspecLatest MiKTex update breaks with fontspecsetmainfont error with most recent fontspec versionXelatex Fontspec Cannot Find FontsPlacing xelatex.exe Intermediate and Output Files in Another Folderfontenc vs fontspec with XeLaTeXWho changed my Chinese character?Fontspec crash with xelatex













1















I'd like to use the fdsymbol package together with the fedra serif b Opentype font. I'm having some problems with the following code



documentclassarticle
usepackagefdsymbol
usepackagefontspec
%setmainfontfedraserifpro-b-book.otf[
%BoldFont = fedraserifpro-b-medium.otf,
%ItalicFont = fedraserifpro-b-bookitalic.otf,
%BoldItalicFont = fedraserifpro-b-mediumita.otf]

begindocument
beginequation
sigma(w | xv)
endequation
enddocument


Compiling with XeLaTeX, I get the following error



LaTeX error: Command 'mathdollar' already defined.


I'm not sure wether the problem is machine-specific or not. Any ideas?



EDIT: After using letmathdollarundefined the code compiles, but the result is



enter image description here



Instead of



enter image description here










share|improve this question
























  • give the command letmathdollarundefined just before begindocument... Possibly fdsymbol package is trying to define it at the beginning of the document... but finds it already defined... Un-define it just before get there and let it redefine it then... But I am not sure if you should use this package with XeLaTeX...

    – koleygr
    23 mins ago












  • With letmathdollarundefined the code compiles, but I'm still not getting the right font. I've updated the post to show what I mean

    – noibe
    18 mins ago











  • Have you tried this way (tex.stackexchange.com/a/96028/120578)?

    – koleygr
    15 mins ago











  • I saw that post but I can't put fdsymbol inside of setmathfont.

    – noibe
    14 mins ago











  • Usually font packages are supposed to be used with LaTeX and pdfLaTeX... Not with XeLaTeX that is created to use system fonts... I suppose that the error means that the creator of the package has not created it to be compatible with XeLaTeX... Try to use Fedora font family that is the equivalent real font to this package's font

    – koleygr
    8 mins ago















1















I'd like to use the fdsymbol package together with the fedra serif b Opentype font. I'm having some problems with the following code



documentclassarticle
usepackagefdsymbol
usepackagefontspec
%setmainfontfedraserifpro-b-book.otf[
%BoldFont = fedraserifpro-b-medium.otf,
%ItalicFont = fedraserifpro-b-bookitalic.otf,
%BoldItalicFont = fedraserifpro-b-mediumita.otf]

begindocument
beginequation
sigma(w | xv)
endequation
enddocument


Compiling with XeLaTeX, I get the following error



LaTeX error: Command 'mathdollar' already defined.


I'm not sure wether the problem is machine-specific or not. Any ideas?



EDIT: After using letmathdollarundefined the code compiles, but the result is



enter image description here



Instead of



enter image description here










share|improve this question
























  • give the command letmathdollarundefined just before begindocument... Possibly fdsymbol package is trying to define it at the beginning of the document... but finds it already defined... Un-define it just before get there and let it redefine it then... But I am not sure if you should use this package with XeLaTeX...

    – koleygr
    23 mins ago












  • With letmathdollarundefined the code compiles, but I'm still not getting the right font. I've updated the post to show what I mean

    – noibe
    18 mins ago











  • Have you tried this way (tex.stackexchange.com/a/96028/120578)?

    – koleygr
    15 mins ago











  • I saw that post but I can't put fdsymbol inside of setmathfont.

    – noibe
    14 mins ago











  • Usually font packages are supposed to be used with LaTeX and pdfLaTeX... Not with XeLaTeX that is created to use system fonts... I suppose that the error means that the creator of the package has not created it to be compatible with XeLaTeX... Try to use Fedora font family that is the equivalent real font to this package's font

    – koleygr
    8 mins ago













1












1








1








I'd like to use the fdsymbol package together with the fedra serif b Opentype font. I'm having some problems with the following code



documentclassarticle
usepackagefdsymbol
usepackagefontspec
%setmainfontfedraserifpro-b-book.otf[
%BoldFont = fedraserifpro-b-medium.otf,
%ItalicFont = fedraserifpro-b-bookitalic.otf,
%BoldItalicFont = fedraserifpro-b-mediumita.otf]

begindocument
beginequation
sigma(w | xv)
endequation
enddocument


Compiling with XeLaTeX, I get the following error



LaTeX error: Command 'mathdollar' already defined.


I'm not sure wether the problem is machine-specific or not. Any ideas?



EDIT: After using letmathdollarundefined the code compiles, but the result is



enter image description here



Instead of



enter image description here










share|improve this question
















I'd like to use the fdsymbol package together with the fedra serif b Opentype font. I'm having some problems with the following code



documentclassarticle
usepackagefdsymbol
usepackagefontspec
%setmainfontfedraserifpro-b-book.otf[
%BoldFont = fedraserifpro-b-medium.otf,
%ItalicFont = fedraserifpro-b-bookitalic.otf,
%BoldItalicFont = fedraserifpro-b-mediumita.otf]

begindocument
beginequation
sigma(w | xv)
endequation
enddocument


Compiling with XeLaTeX, I get the following error



LaTeX error: Command 'mathdollar' already defined.


I'm not sure wether the problem is machine-specific or not. Any ideas?



EDIT: After using letmathdollarundefined the code compiles, but the result is



enter image description here



Instead of



enter image description here







xetex fontspec fdsymbol






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 17 mins ago







noibe

















asked 44 mins ago









noibenoibe

505113




505113












  • give the command letmathdollarundefined just before begindocument... Possibly fdsymbol package is trying to define it at the beginning of the document... but finds it already defined... Un-define it just before get there and let it redefine it then... But I am not sure if you should use this package with XeLaTeX...

    – koleygr
    23 mins ago












  • With letmathdollarundefined the code compiles, but I'm still not getting the right font. I've updated the post to show what I mean

    – noibe
    18 mins ago











  • Have you tried this way (tex.stackexchange.com/a/96028/120578)?

    – koleygr
    15 mins ago











  • I saw that post but I can't put fdsymbol inside of setmathfont.

    – noibe
    14 mins ago











  • Usually font packages are supposed to be used with LaTeX and pdfLaTeX... Not with XeLaTeX that is created to use system fonts... I suppose that the error means that the creator of the package has not created it to be compatible with XeLaTeX... Try to use Fedora font family that is the equivalent real font to this package's font

    – koleygr
    8 mins ago

















  • give the command letmathdollarundefined just before begindocument... Possibly fdsymbol package is trying to define it at the beginning of the document... but finds it already defined... Un-define it just before get there and let it redefine it then... But I am not sure if you should use this package with XeLaTeX...

    – koleygr
    23 mins ago












  • With letmathdollarundefined the code compiles, but I'm still not getting the right font. I've updated the post to show what I mean

    – noibe
    18 mins ago











  • Have you tried this way (tex.stackexchange.com/a/96028/120578)?

    – koleygr
    15 mins ago











  • I saw that post but I can't put fdsymbol inside of setmathfont.

    – noibe
    14 mins ago











  • Usually font packages are supposed to be used with LaTeX and pdfLaTeX... Not with XeLaTeX that is created to use system fonts... I suppose that the error means that the creator of the package has not created it to be compatible with XeLaTeX... Try to use Fedora font family that is the equivalent real font to this package's font

    – koleygr
    8 mins ago
















give the command letmathdollarundefined just before begindocument... Possibly fdsymbol package is trying to define it at the beginning of the document... but finds it already defined... Un-define it just before get there and let it redefine it then... But I am not sure if you should use this package with XeLaTeX...

– koleygr
23 mins ago






give the command letmathdollarundefined just before begindocument... Possibly fdsymbol package is trying to define it at the beginning of the document... but finds it already defined... Un-define it just before get there and let it redefine it then... But I am not sure if you should use this package with XeLaTeX...

– koleygr
23 mins ago














With letmathdollarundefined the code compiles, but I'm still not getting the right font. I've updated the post to show what I mean

– noibe
18 mins ago





With letmathdollarundefined the code compiles, but I'm still not getting the right font. I've updated the post to show what I mean

– noibe
18 mins ago













Have you tried this way (tex.stackexchange.com/a/96028/120578)?

– koleygr
15 mins ago





Have you tried this way (tex.stackexchange.com/a/96028/120578)?

– koleygr
15 mins ago













I saw that post but I can't put fdsymbol inside of setmathfont.

– noibe
14 mins ago





I saw that post but I can't put fdsymbol inside of setmathfont.

– noibe
14 mins ago













Usually font packages are supposed to be used with LaTeX and pdfLaTeX... Not with XeLaTeX that is created to use system fonts... I suppose that the error means that the creator of the package has not created it to be compatible with XeLaTeX... Try to use Fedora font family that is the equivalent real font to this package's font

– koleygr
8 mins ago





Usually font packages are supposed to be used with LaTeX and pdfLaTeX... Not with XeLaTeX that is created to use system fonts... I suppose that the error means that the creator of the package has not created it to be compatible with XeLaTeX... Try to use Fedora font family that is the equivalent real font to this package's font

– koleygr
8 mins ago










0






active

oldest

votes











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f478513%2fusing-fdsymbol-and-fontspec%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f478513%2fusing-fdsymbol-and-fontspec%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Isabella Eugénie Boyer Biographie | Références | Menu de navigationmodifiermodifier le codeComparator to Compute the Relative Value of a U.S. Dollar Amount – 1774 to Present.

Lioubotyn Sommaire Géographie | Histoire | Population | Notes et références | Liens externes | Menu de navigationlubotin.kharkov.uamodifier« Recensements et estimations de la population depuis 1897 »« Office des statistiques d'Ukraine : population au 1er janvier 2010, 2011 et 2012 »« Office des statistiques d'Ukraine : population au 1er janvier 2011, 2012 et 2013 »Informations officiellesCartes topographiquesCarte routièrem

Mpande kaSenzangakhona Biographie | Références | Menu de navigationmodifierMpande kaSenzangakhonavoir la liste des auteursm