Curvy L with amssymb package
up vote
7
down vote
favorite
I want to display a curvy L n°1:
(An application is found here as well as this other question.)
However, when I enter the code
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{amsmath}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}$
end{document}
I get curvy L n°2:
How can I print the curvy L n°1?
fonts amssymb
add a comment |
up vote
7
down vote
favorite
I want to display a curvy L n°1:
(An application is found here as well as this other question.)
However, when I enter the code
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{amsmath}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}$
end{document}
I get curvy L n°2:
How can I print the curvy L n°1?
fonts amssymb
1
commentusepackage{mathptmx}
line and try again.
– nidhin
Nov 10 at 18:20
add a comment |
up vote
7
down vote
favorite
up vote
7
down vote
favorite
I want to display a curvy L n°1:
(An application is found here as well as this other question.)
However, when I enter the code
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{amsmath}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}$
end{document}
I get curvy L n°2:
How can I print the curvy L n°1?
fonts amssymb
I want to display a curvy L n°1:
(An application is found here as well as this other question.)
However, when I enter the code
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{amsmath}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}$
end{document}
I get curvy L n°2:
How can I print the curvy L n°1?
fonts amssymb
fonts amssymb
edited Nov 10 at 23:11
Peter Mortensen
52736
52736
asked Nov 10 at 18:11
ecjb
694
694
1
commentusepackage{mathptmx}
line and try again.
– nidhin
Nov 10 at 18:20
add a comment |
1
commentusepackage{mathptmx}
line and try again.
– nidhin
Nov 10 at 18:20
1
1
comment
usepackage{mathptmx}
line and try again.– nidhin
Nov 10 at 18:20
comment
usepackage{mathptmx}
line and try again.– nidhin
Nov 10 at 18:20
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
If you adding the two rows
usepackage{calrsfs}
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}
it is possibile, in the same file .tex
, to use the both curvy option. I have removed usepackage{amsmath}
with usepackage{mathtools}
because loading mathtools
, you will have both packages loaded and you do not need to usepackage{amsmath}
in your preamble.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
usepackage{calrsfs}%%%%%%%%%%<------add
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}%%%%%%%%%%<------add
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}, pazocal{L}$
end{document}
add a comment |
up vote
6
down vote
Comment usepackage{mathptmx}
.
Read page 5 in documentation of mathptmx. It says that the fonts for mathcal
symbols will be changed.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{amsmath}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
%usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}$
end{document}
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
If you adding the two rows
usepackage{calrsfs}
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}
it is possibile, in the same file .tex
, to use the both curvy option. I have removed usepackage{amsmath}
with usepackage{mathtools}
because loading mathtools
, you will have both packages loaded and you do not need to usepackage{amsmath}
in your preamble.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
usepackage{calrsfs}%%%%%%%%%%<------add
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}%%%%%%%%%%<------add
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}, pazocal{L}$
end{document}
add a comment |
up vote
4
down vote
accepted
If you adding the two rows
usepackage{calrsfs}
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}
it is possibile, in the same file .tex
, to use the both curvy option. I have removed usepackage{amsmath}
with usepackage{mathtools}
because loading mathtools
, you will have both packages loaded and you do not need to usepackage{amsmath}
in your preamble.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
usepackage{calrsfs}%%%%%%%%%%<------add
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}%%%%%%%%%%<------add
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}, pazocal{L}$
end{document}
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
If you adding the two rows
usepackage{calrsfs}
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}
it is possibile, in the same file .tex
, to use the both curvy option. I have removed usepackage{amsmath}
with usepackage{mathtools}
because loading mathtools
, you will have both packages loaded and you do not need to usepackage{amsmath}
in your preamble.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
usepackage{calrsfs}%%%%%%%%%%<------add
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}%%%%%%%%%%<------add
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}, pazocal{L}$
end{document}
If you adding the two rows
usepackage{calrsfs}
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}
it is possibile, in the same file .tex
, to use the both curvy option. I have removed usepackage{amsmath}
with usepackage{mathtools}
because loading mathtools
, you will have both packages loaded and you do not need to usepackage{amsmath}
in your preamble.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
usepackage{calrsfs}%%%%%%%%%%<------add
DeclareMathAlphabet{pazocal}{OMS}{zplm}{m}{n}%%%%%%%%%%<------add
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}, pazocal{L}$
end{document}
edited Nov 10 at 21:24
answered Nov 10 at 18:17
Sebastiano
8,29541754
8,29541754
add a comment |
add a comment |
up vote
6
down vote
Comment usepackage{mathptmx}
.
Read page 5 in documentation of mathptmx. It says that the fonts for mathcal
symbols will be changed.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{amsmath}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
%usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}$
end{document}
add a comment |
up vote
6
down vote
Comment usepackage{mathptmx}
.
Read page 5 in documentation of mathptmx. It says that the fonts for mathcal
symbols will be changed.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{amsmath}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
%usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}$
end{document}
add a comment |
up vote
6
down vote
up vote
6
down vote
Comment usepackage{mathptmx}
.
Read page 5 in documentation of mathptmx. It says that the fonts for mathcal
symbols will be changed.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{amsmath}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
%usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}$
end{document}
Comment usepackage{mathptmx}
.
Read page 5 in documentation of mathptmx. It says that the fonts for mathcal
symbols will be changed.
documentclass[a4paper, 12pt]{book}
usepackage{amssymb}
usepackage{amsmath}
usepackage{mathtools}
usepackage[utf8]{inputenc}
usepackage{geometry}
usepackage{url}
usepackage{framed}
usepackage{setspace}
%usepackage{mathptmx}
usepackage{multirow}
usepackage{listings}
usepackage{xcolor}
usepackage{framed}
begin{document}
setlength{parindent}{0cm}
renewcommand{baselinestretch}{0.5}
$mathcal{L}$
end{document}
edited Nov 10 at 18:50
samcarter
81.8k793262
81.8k793262
answered Nov 10 at 18:22
nidhin
1,420820
1,420820
add a comment |
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f459356%2fcurvy-l-with-amssymb-package%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
1
comment
usepackage{mathptmx}
line and try again.– nidhin
Nov 10 at 18:20