How to write capital alpha? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Which package includes Rho? (Big rho)Can I typeset greek letters in text mode using Latin Modern Fonts?Changing the Greek math font with mathspecHow to use `mathrm` with capital greek letter and `newtx` package?Charter and Helvetica with greek letters in LaTeX or XeLaTeXnon-italic Greek lettersUse smart greek letters recognizing mathrm with mathastext-packageHow to tell XeLaTeX to use one font for italic math and another font for bold math?mtpro2 + baskerville in mathExport Greek font (italic, upright, bold) from 'newtxmath' package with libertine option
Is it possible for SQL statements to execute concurrently within a single session in SQL Server?
Amount of permutations on an NxNxN Rubik's Cube
What was the first language to use conditional keywords?
How to compare two different files line by line in unix?
A term for a woman complaining about things/begging in a cute/childish way
How to plot logistic regression decision boundary?
Trademark violation for app?
Do I really need to have a message in a novel to appeal to readers?
Why are vacuum tubes still used in amateur radios?
How would a mousetrap for use in space work?
Antipodal Land Area Calculation
Putting class ranking in CV, but against dept guidelines
Sentence order: Where to put もう
Generate an RGB colour grid
Converted a Scalar function to a TVF function for parallel execution-Still running in Serial mode
Is there a kind of relay that only consumes power when switching?
Project Euler #1 in C++
Maximum summed subsequences with non-adjacent items
How much damage would a cupful of neutron star matter do to the Earth?
What is the meaning of 'breadth' in breadth first search?
Put R under double integral
Why weren't discrete x86 CPUs ever used in game hardware?
How do I find out the mythology and history of my Fortress?
Belief In God or Knowledge Of God. Which is better?
How to write capital alpha?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Which package includes Rho? (Big rho)Can I typeset greek letters in text mode using Latin Modern Fonts?Changing the Greek math font with mathspecHow to use `mathrm` with capital greek letter and `newtx` package?Charter and Helvetica with greek letters in LaTeX or XeLaTeXnon-italic Greek lettersUse smart greek letters recognizing mathrm with mathastext-packageHow to tell XeLaTeX to use one font for italic math and another font for bold math?mtpro2 + baskerville in mathExport Greek font (italic, upright, bold) from 'newtxmath' package with libertine option
Unfortunately, the command Alpha
does not produce capital version of alpha
(as one might expect in analogy with how, say, Pi
produces capital pi
). It so happens that the capital alpha looks rather similar to A
, but that doesn't mean that there aren't situations where I would like to use capital alpha in a formula. For instance, suppose I already have pi
which belongs to a set Pi
, and then alpha
comes along and I need a name for the set of its possible values.
What is the best way to write capital alpha?
The obvious first attempt is to just write A
. But it's not right - A
produces italic A
, while Greek letters are by default not italic. Would mathrmA
do the trick, or is there some subtle issue I'm not noticing? Is there a package that will save me the work of defining all capital letters by hand?
fonts greek
add a comment |
Unfortunately, the command Alpha
does not produce capital version of alpha
(as one might expect in analogy with how, say, Pi
produces capital pi
). It so happens that the capital alpha looks rather similar to A
, but that doesn't mean that there aren't situations where I would like to use capital alpha in a formula. For instance, suppose I already have pi
which belongs to a set Pi
, and then alpha
comes along and I need a name for the set of its possible values.
What is the best way to write capital alpha?
The obvious first attempt is to just write A
. But it's not right - A
produces italic A
, while Greek letters are by default not italic. Would mathrmA
do the trick, or is there some subtle issue I'm not noticing? Is there a package that will save me the work of defining all capital letters by hand?
fonts greek
2
Yes, it ismathrmA
.
– JouleV
2 hours ago
add a comment |
Unfortunately, the command Alpha
does not produce capital version of alpha
(as one might expect in analogy with how, say, Pi
produces capital pi
). It so happens that the capital alpha looks rather similar to A
, but that doesn't mean that there aren't situations where I would like to use capital alpha in a formula. For instance, suppose I already have pi
which belongs to a set Pi
, and then alpha
comes along and I need a name for the set of its possible values.
What is the best way to write capital alpha?
The obvious first attempt is to just write A
. But it's not right - A
produces italic A
, while Greek letters are by default not italic. Would mathrmA
do the trick, or is there some subtle issue I'm not noticing? Is there a package that will save me the work of defining all capital letters by hand?
fonts greek
Unfortunately, the command Alpha
does not produce capital version of alpha
(as one might expect in analogy with how, say, Pi
produces capital pi
). It so happens that the capital alpha looks rather similar to A
, but that doesn't mean that there aren't situations where I would like to use capital alpha in a formula. For instance, suppose I already have pi
which belongs to a set Pi
, and then alpha
comes along and I need a name for the set of its possible values.
What is the best way to write capital alpha?
The obvious first attempt is to just write A
. But it's not right - A
produces italic A
, while Greek letters are by default not italic. Would mathrmA
do the trick, or is there some subtle issue I'm not noticing? Is there a package that will save me the work of defining all capital letters by hand?
fonts greek
fonts greek
edited 2 hours ago
Sigur
26.3k457143
26.3k457143
asked 2 hours ago
Jakub KoniecznyJakub Konieczny
26229
26229
2
Yes, it ismathrmA
.
– JouleV
2 hours ago
add a comment |
2
Yes, it ismathrmA
.
– JouleV
2 hours ago
2
2
Yes, it is
mathrmA
.– JouleV
2 hours ago
Yes, it is
mathrmA
.– JouleV
2 hours ago
add a comment |
2 Answers
2
active
oldest
votes
Screenshot from lshort.pdf
(The Not So Short Introduction to LaTeX2e):
So it is simply mathrmA
.
documentclassstandalone
newcommandAlphamathrmA
begindocument
$Alpha+Pi=Gamma$
enddocument
add a comment |
If you're using LuaLaTeX or XeLaTeX, you can use the unicode-math
package. It defines all uppercase Greek letters:
documentclassarticle
usepackageunicode-math
begindocument
$Alpha+Beta=Gamma$.
enddocument
The result is:
This way has an advantage in that one can change the style of the letters by altering the unicode-math
options. For example usepackage[math-style=ISO]unicode-math
without any other changes yields:
Also, this way alpha can be copied&pasted from the resulting PDF.
add a comment |
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%2f485593%2fhow-to-write-capital-alpha%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Screenshot from lshort.pdf
(The Not So Short Introduction to LaTeX2e):
So it is simply mathrmA
.
documentclassstandalone
newcommandAlphamathrmA
begindocument
$Alpha+Pi=Gamma$
enddocument
add a comment |
Screenshot from lshort.pdf
(The Not So Short Introduction to LaTeX2e):
So it is simply mathrmA
.
documentclassstandalone
newcommandAlphamathrmA
begindocument
$Alpha+Pi=Gamma$
enddocument
add a comment |
Screenshot from lshort.pdf
(The Not So Short Introduction to LaTeX2e):
So it is simply mathrmA
.
documentclassstandalone
newcommandAlphamathrmA
begindocument
$Alpha+Pi=Gamma$
enddocument
Screenshot from lshort.pdf
(The Not So Short Introduction to LaTeX2e):
So it is simply mathrmA
.
documentclassstandalone
newcommandAlphamathrmA
begindocument
$Alpha+Pi=Gamma$
enddocument
answered 2 hours ago
JouleVJouleV
14.3k22664
14.3k22664
add a comment |
add a comment |
If you're using LuaLaTeX or XeLaTeX, you can use the unicode-math
package. It defines all uppercase Greek letters:
documentclassarticle
usepackageunicode-math
begindocument
$Alpha+Beta=Gamma$.
enddocument
The result is:
This way has an advantage in that one can change the style of the letters by altering the unicode-math
options. For example usepackage[math-style=ISO]unicode-math
without any other changes yields:
Also, this way alpha can be copied&pasted from the resulting PDF.
add a comment |
If you're using LuaLaTeX or XeLaTeX, you can use the unicode-math
package. It defines all uppercase Greek letters:
documentclassarticle
usepackageunicode-math
begindocument
$Alpha+Beta=Gamma$.
enddocument
The result is:
This way has an advantage in that one can change the style of the letters by altering the unicode-math
options. For example usepackage[math-style=ISO]unicode-math
without any other changes yields:
Also, this way alpha can be copied&pasted from the resulting PDF.
add a comment |
If you're using LuaLaTeX or XeLaTeX, you can use the unicode-math
package. It defines all uppercase Greek letters:
documentclassarticle
usepackageunicode-math
begindocument
$Alpha+Beta=Gamma$.
enddocument
The result is:
This way has an advantage in that one can change the style of the letters by altering the unicode-math
options. For example usepackage[math-style=ISO]unicode-math
without any other changes yields:
Also, this way alpha can be copied&pasted from the resulting PDF.
If you're using LuaLaTeX or XeLaTeX, you can use the unicode-math
package. It defines all uppercase Greek letters:
documentclassarticle
usepackageunicode-math
begindocument
$Alpha+Beta=Gamma$.
enddocument
The result is:
This way has an advantage in that one can change the style of the letters by altering the unicode-math
options. For example usepackage[math-style=ISO]unicode-math
without any other changes yields:
Also, this way alpha can be copied&pasted from the resulting PDF.
answered 1 hour ago
Sergei GolovanSergei Golovan
4,5651615
4,5651615
add a comment |
add a comment |
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%2f485593%2fhow-to-write-capital-alpha%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
2
Yes, it is
mathrmA
.– JouleV
2 hours ago