Palatino Linotype font
Clash Royale CLAN TAG#URR8PPP
up vote
8
down vote
favorite
The font family attached below is the Platino Linotype font (name from 'MS Word') italicized. Which latex command can be used to automatically generates the font family in math mode throughout the document? Thank you in advance.
math-mode fonts preamble
add a comment |Â
up vote
8
down vote
favorite
The font family attached below is the Platino Linotype font (name from 'MS Word') italicized. Which latex command can be used to automatically generates the font family in math mode throughout the document? Thank you in advance.
math-mode fonts preamble
add a comment |Â
up vote
8
down vote
favorite
up vote
8
down vote
favorite
The font family attached below is the Platino Linotype font (name from 'MS Word') italicized. Which latex command can be used to automatically generates the font family in math mode throughout the document? Thank you in advance.
math-mode fonts preamble
The font family attached below is the Platino Linotype font (name from 'MS Word') italicized. Which latex command can be used to automatically generates the font family in math mode throughout the document? Thank you in advance.
math-mode fonts preamble
math-mode fonts preamble
edited 19 hours ago
asked 21 hours ago
macpee
864
864
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
10
down vote
First solution: mathpazo
(for pdflatex
)
documentclassarticle
usepackagemathpazo
begindocument
Text and math $ax+by+c$
enddocument
Second solution: newPX (for pdflatex
)
documentclassarticle
usepackagenewpxtext,newpxmath
begindocument
Text and math $ax+by+c$
enddocument
Third solution: mathpazo
(for xelatex
or lualatex
)
documentclassarticle
usepackagemathpazo
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fourth solution: newPX (for xelatex
or lualatex
)
documentclassarticle
usepackagenewpxmath
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fifth solution: Pagella Math (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontTeX Gyre Pagella Math
begindocument
Text and math $ax+by+c$
enddocument
Sixth solution: Asana (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontAsana Math
begindocument
Text and math $ax+by+c$
enddocument
Comments
In solutions 3 to 6, the text font can be any OpenType/TrueType version of Palatino you have available, instead of TeX Gyre Pagella.
add a comment |Â
up vote
5
down vote
Reference: http://www.tug.dk/FontCatalogue/newpx/
documentclassarticle
usepackage[T1]fontenc
usepackagelmodern% LATIN MODERN TEXT, OR...
%usepackagenewpxtext% FOR PALATINO TEXT
% THEN...
usepackagenewpxmath% FOR MATH
begindocument
Text and $ax + by + c$
enddocument
So so grateful egreg and Stephen. Thanks a lot
– macpee
19 hours ago
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
10
down vote
First solution: mathpazo
(for pdflatex
)
documentclassarticle
usepackagemathpazo
begindocument
Text and math $ax+by+c$
enddocument
Second solution: newPX (for pdflatex
)
documentclassarticle
usepackagenewpxtext,newpxmath
begindocument
Text and math $ax+by+c$
enddocument
Third solution: mathpazo
(for xelatex
or lualatex
)
documentclassarticle
usepackagemathpazo
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fourth solution: newPX (for xelatex
or lualatex
)
documentclassarticle
usepackagenewpxmath
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fifth solution: Pagella Math (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontTeX Gyre Pagella Math
begindocument
Text and math $ax+by+c$
enddocument
Sixth solution: Asana (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontAsana Math
begindocument
Text and math $ax+by+c$
enddocument
Comments
In solutions 3 to 6, the text font can be any OpenType/TrueType version of Palatino you have available, instead of TeX Gyre Pagella.
add a comment |Â
up vote
10
down vote
First solution: mathpazo
(for pdflatex
)
documentclassarticle
usepackagemathpazo
begindocument
Text and math $ax+by+c$
enddocument
Second solution: newPX (for pdflatex
)
documentclassarticle
usepackagenewpxtext,newpxmath
begindocument
Text and math $ax+by+c$
enddocument
Third solution: mathpazo
(for xelatex
or lualatex
)
documentclassarticle
usepackagemathpazo
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fourth solution: newPX (for xelatex
or lualatex
)
documentclassarticle
usepackagenewpxmath
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fifth solution: Pagella Math (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontTeX Gyre Pagella Math
begindocument
Text and math $ax+by+c$
enddocument
Sixth solution: Asana (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontAsana Math
begindocument
Text and math $ax+by+c$
enddocument
Comments
In solutions 3 to 6, the text font can be any OpenType/TrueType version of Palatino you have available, instead of TeX Gyre Pagella.
add a comment |Â
up vote
10
down vote
up vote
10
down vote
First solution: mathpazo
(for pdflatex
)
documentclassarticle
usepackagemathpazo
begindocument
Text and math $ax+by+c$
enddocument
Second solution: newPX (for pdflatex
)
documentclassarticle
usepackagenewpxtext,newpxmath
begindocument
Text and math $ax+by+c$
enddocument
Third solution: mathpazo
(for xelatex
or lualatex
)
documentclassarticle
usepackagemathpazo
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fourth solution: newPX (for xelatex
or lualatex
)
documentclassarticle
usepackagenewpxmath
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fifth solution: Pagella Math (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontTeX Gyre Pagella Math
begindocument
Text and math $ax+by+c$
enddocument
Sixth solution: Asana (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontAsana Math
begindocument
Text and math $ax+by+c$
enddocument
Comments
In solutions 3 to 6, the text font can be any OpenType/TrueType version of Palatino you have available, instead of TeX Gyre Pagella.
First solution: mathpazo
(for pdflatex
)
documentclassarticle
usepackagemathpazo
begindocument
Text and math $ax+by+c$
enddocument
Second solution: newPX (for pdflatex
)
documentclassarticle
usepackagenewpxtext,newpxmath
begindocument
Text and math $ax+by+c$
enddocument
Third solution: mathpazo
(for xelatex
or lualatex
)
documentclassarticle
usepackagemathpazo
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fourth solution: newPX (for xelatex
or lualatex
)
documentclassarticle
usepackagenewpxmath
usepackagefontspec
setmainfontTeX Gyre Pagella
begindocument
Text and math $ax+by+c$
enddocument
Fifth solution: Pagella Math (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontTeX Gyre Pagella Math
begindocument
Text and math $ax+by+c$
enddocument
Sixth solution: Asana (for xelatex
or lualatex
)
documentclassarticle
usepackageunicode-math
setmainfontTeX Gyre Pagella
setmathfontAsana Math
begindocument
Text and math $ax+by+c$
enddocument
Comments
In solutions 3 to 6, the text font can be any OpenType/TrueType version of Palatino you have available, instead of TeX Gyre Pagella.
answered 21 hours ago


egreg
682k8318123060
682k8318123060
add a comment |Â
add a comment |Â
up vote
5
down vote
Reference: http://www.tug.dk/FontCatalogue/newpx/
documentclassarticle
usepackage[T1]fontenc
usepackagelmodern% LATIN MODERN TEXT, OR...
%usepackagenewpxtext% FOR PALATINO TEXT
% THEN...
usepackagenewpxmath% FOR MATH
begindocument
Text and $ax + by + c$
enddocument
So so grateful egreg and Stephen. Thanks a lot
– macpee
19 hours ago
add a comment |Â
up vote
5
down vote
Reference: http://www.tug.dk/FontCatalogue/newpx/
documentclassarticle
usepackage[T1]fontenc
usepackagelmodern% LATIN MODERN TEXT, OR...
%usepackagenewpxtext% FOR PALATINO TEXT
% THEN...
usepackagenewpxmath% FOR MATH
begindocument
Text and $ax + by + c$
enddocument
So so grateful egreg and Stephen. Thanks a lot
– macpee
19 hours ago
add a comment |Â
up vote
5
down vote
up vote
5
down vote
Reference: http://www.tug.dk/FontCatalogue/newpx/
documentclassarticle
usepackage[T1]fontenc
usepackagelmodern% LATIN MODERN TEXT, OR...
%usepackagenewpxtext% FOR PALATINO TEXT
% THEN...
usepackagenewpxmath% FOR MATH
begindocument
Text and $ax + by + c$
enddocument
Reference: http://www.tug.dk/FontCatalogue/newpx/
documentclassarticle
usepackage[T1]fontenc
usepackagelmodern% LATIN MODERN TEXT, OR...
%usepackagenewpxtext% FOR PALATINO TEXT
% THEN...
usepackagenewpxmath% FOR MATH
begindocument
Text and $ax + by + c$
enddocument
edited 21 hours ago
answered 21 hours ago


Steven B. Segletes
146k9186388
146k9186388
So so grateful egreg and Stephen. Thanks a lot
– macpee
19 hours ago
add a comment |Â
So so grateful egreg and Stephen. Thanks a lot
– macpee
19 hours ago
So so grateful egreg and Stephen. Thanks a lot
– macpee
19 hours ago
So so grateful egreg and Stephen. Thanks a lot
– macpee
19 hours ago
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f450600%2fpalatino-linotype-font%23new-answer', 'question_page');
);
Post as a guest
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
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
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