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
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
Instead of
xetex fontspec fdsymbol
add a comment |
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
Instead of
xetex fontspec fdsymbol
give the commandletmathdollarundefined
just beforebegindocument
... Possiblyfdsymbol
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 withXeLaTeX
...
– koleygr
23 mins ago
Withletmathdollarundefined
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 putfdsymbol
inside ofsetmathfont
.
– noibe
14 mins ago
Usually font packages are supposed to be used withLaTeX
andpdfLaTeX
... Not withXeLaTeX
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 withXeLaTeX
... Try to useFedora
font family that is the equivalent real font to this package's font
– koleygr
8 mins ago
add a comment |
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
Instead of
xetex fontspec fdsymbol
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
Instead of
xetex fontspec fdsymbol
xetex fontspec fdsymbol
edited 17 mins ago
noibe
asked 44 mins ago
noibenoibe
505113
505113
give the commandletmathdollarundefined
just beforebegindocument
... Possiblyfdsymbol
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 withXeLaTeX
...
– koleygr
23 mins ago
Withletmathdollarundefined
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 putfdsymbol
inside ofsetmathfont
.
– noibe
14 mins ago
Usually font packages are supposed to be used withLaTeX
andpdfLaTeX
... Not withXeLaTeX
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 withXeLaTeX
... Try to useFedora
font family that is the equivalent real font to this package's font
– koleygr
8 mins ago
add a comment |
give the commandletmathdollarundefined
just beforebegindocument
... Possiblyfdsymbol
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 withXeLaTeX
...
– koleygr
23 mins ago
Withletmathdollarundefined
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 putfdsymbol
inside ofsetmathfont
.
– noibe
14 mins ago
Usually font packages are supposed to be used withLaTeX
andpdfLaTeX
... Not withXeLaTeX
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 withXeLaTeX
... Try to useFedora
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
give the command
letmathdollarundefined
just beforebegindocument
... Possiblyfdsymbol
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 withXeLaTeX
...– 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 ofsetmathfont
.– noibe
14 mins ago
Usually font packages are supposed to be used with
LaTeX
andpdfLaTeX
... Not withXeLaTeX
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 withXeLaTeX
... Try to useFedora
font family that is the equivalent real font to this package's font– koleygr
8 mins ago