How to set the font size to 11.5pt?
How do I set the font size to 11.5? 12 is too large and 11 is too small.
I used
documentclass[titlepage,11.5pt]{article}
but it still gives me size 11
fontsize
New contributor
add a comment |
How do I set the font size to 11.5? 12 is too large and 11 is too small.
I used
documentclass[titlepage,11.5pt]{article}
but it still gives me size 11
fontsize
New contributor
5
The defaultarticle
class only has three choices10pt
,11pt
and12pt
, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.
– Au101
8 hours ago
However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.
– Au101
8 hours ago
add a comment |
How do I set the font size to 11.5? 12 is too large and 11 is too small.
I used
documentclass[titlepage,11.5pt]{article}
but it still gives me size 11
fontsize
New contributor
How do I set the font size to 11.5? 12 is too large and 11 is too small.
I used
documentclass[titlepage,11.5pt]{article}
but it still gives me size 11
fontsize
fontsize
New contributor
New contributor
edited 4 mins ago
Jeel Shah
1,75932846
1,75932846
New contributor
asked 8 hours ago
BobBob
411
411
New contributor
New contributor
5
The defaultarticle
class only has three choices10pt
,11pt
and12pt
, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.
– Au101
8 hours ago
However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.
– Au101
8 hours ago
add a comment |
5
The defaultarticle
class only has three choices10pt
,11pt
and12pt
, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.
– Au101
8 hours ago
However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.
– Au101
8 hours ago
5
5
The default
article
class only has three choices 10pt
, 11pt
and 12pt
, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.– Au101
8 hours ago
The default
article
class only has three choices 10pt
, 11pt
and 12pt
, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.– Au101
8 hours ago
However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.
– Au101
8 hours ago
However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.
– Au101
8 hours ago
add a comment |
2 Answers
2
active
oldest
votes
the options 10pt
, 11pt
and 12pt
are not lengths at all they are simply strings used as option names that suggest the size of normalsize
(although 11pt doesn't set normalsize
to 11pt, but 10.95pt)
They are the only three size related options but you can request a font of any size
fontsize{11.4pt}{2cm}selectfont
requests an 11.4pt font on a 2cm baseline.
For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put
RequirePackage{fix-cm}
at the top of the document, this restriction will be lifted and fonts will be used at the requested size.
Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.
add a comment |
KOMA-script allows you to specify any size for your main font, so you could use
documentclass[titlepage, fontsize=11.5pt]{scrartcl}
Note that you might want to select either package fix-cm
or lmodern
to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.
Many font packages have an option like [scale=0.958]
or [scaled=0.958]
. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec
, you could do:
documentclass[titlepage, 12pt]{article}
usepackage{fontspec}
defaultfontfeatures{Scale = MatchLowercase}
setmainfont{Latin Modern Roman}[
Scale = 0.958,
Ligatures = {Common, TeX}]
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
});
}
});
Bob is a new contributor. Be nice, and check out our Code of Conduct.
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%2f473838%2fhow-to-set-the-font-size-to-11-5pt%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
the options 10pt
, 11pt
and 12pt
are not lengths at all they are simply strings used as option names that suggest the size of normalsize
(although 11pt doesn't set normalsize
to 11pt, but 10.95pt)
They are the only three size related options but you can request a font of any size
fontsize{11.4pt}{2cm}selectfont
requests an 11.4pt font on a 2cm baseline.
For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put
RequirePackage{fix-cm}
at the top of the document, this restriction will be lifted and fonts will be used at the requested size.
Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.
add a comment |
the options 10pt
, 11pt
and 12pt
are not lengths at all they are simply strings used as option names that suggest the size of normalsize
(although 11pt doesn't set normalsize
to 11pt, but 10.95pt)
They are the only three size related options but you can request a font of any size
fontsize{11.4pt}{2cm}selectfont
requests an 11.4pt font on a 2cm baseline.
For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put
RequirePackage{fix-cm}
at the top of the document, this restriction will be lifted and fonts will be used at the requested size.
Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.
add a comment |
the options 10pt
, 11pt
and 12pt
are not lengths at all they are simply strings used as option names that suggest the size of normalsize
(although 11pt doesn't set normalsize
to 11pt, but 10.95pt)
They are the only three size related options but you can request a font of any size
fontsize{11.4pt}{2cm}selectfont
requests an 11.4pt font on a 2cm baseline.
For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put
RequirePackage{fix-cm}
at the top of the document, this restriction will be lifted and fonts will be used at the requested size.
Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.
the options 10pt
, 11pt
and 12pt
are not lengths at all they are simply strings used as option names that suggest the size of normalsize
(although 11pt doesn't set normalsize
to 11pt, but 10.95pt)
They are the only three size related options but you can request a font of any size
fontsize{11.4pt}{2cm}selectfont
requests an 11.4pt font on a 2cm baseline.
For most fonts you will get the size requested. For reasons of historical compatibility, or if you do this with the default computer modern fonts then the size will be set to one of a discrete list of sizes, however if you put
RequirePackage{fix-cm}
at the top of the document, this restriction will be lifted and fonts will be used at the requested size.
Note that the size options do far more than just set the font size they also specify suitable page sizes, and suitable lengths around lists and displays, and section headings etc.
edited 7 hours ago
marmot
98.2k4113218
98.2k4113218
answered 8 hours ago
David CarlisleDavid Carlisle
489k4111311879
489k4111311879
add a comment |
add a comment |
KOMA-script allows you to specify any size for your main font, so you could use
documentclass[titlepage, fontsize=11.5pt]{scrartcl}
Note that you might want to select either package fix-cm
or lmodern
to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.
Many font packages have an option like [scale=0.958]
or [scaled=0.958]
. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec
, you could do:
documentclass[titlepage, 12pt]{article}
usepackage{fontspec}
defaultfontfeatures{Scale = MatchLowercase}
setmainfont{Latin Modern Roman}[
Scale = 0.958,
Ligatures = {Common, TeX}]
add a comment |
KOMA-script allows you to specify any size for your main font, so you could use
documentclass[titlepage, fontsize=11.5pt]{scrartcl}
Note that you might want to select either package fix-cm
or lmodern
to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.
Many font packages have an option like [scale=0.958]
or [scaled=0.958]
. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec
, you could do:
documentclass[titlepage, 12pt]{article}
usepackage{fontspec}
defaultfontfeatures{Scale = MatchLowercase}
setmainfont{Latin Modern Roman}[
Scale = 0.958,
Ligatures = {Common, TeX}]
add a comment |
KOMA-script allows you to specify any size for your main font, so you could use
documentclass[titlepage, fontsize=11.5pt]{scrartcl}
Note that you might want to select either package fix-cm
or lmodern
to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.
Many font packages have an option like [scale=0.958]
or [scaled=0.958]
. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec
, you could do:
documentclass[titlepage, 12pt]{article}
usepackage{fontspec}
defaultfontfeatures{Scale = MatchLowercase}
setmainfont{Latin Modern Roman}[
Scale = 0.958,
Ligatures = {Common, TeX}]
KOMA-script allows you to specify any size for your main font, so you could use
documentclass[titlepage, fontsize=11.5pt]{scrartcl}
Note that you might want to select either package fix-cm
or lmodern
to be able to use the default font at non-standard sizes. Any Type1 font should also be fine.
Many font packages have an option like [scale=0.958]
or [scaled=0.958]
. (11.5/12.0 ≈ 0.958.) Finally, if you’re using fontspec
, you could do:
documentclass[titlepage, 12pt]{article}
usepackage{fontspec}
defaultfontfeatures{Scale = MatchLowercase}
setmainfont{Latin Modern Roman}[
Scale = 0.958,
Ligatures = {Common, TeX}]
edited 2 hours ago
answered 8 hours ago
DavislorDavislor
6,2321227
6,2321227
add a comment |
add a comment |
Bob is a new contributor. Be nice, and check out our Code of Conduct.
Bob is a new contributor. Be nice, and check out our Code of Conduct.
Bob is a new contributor. Be nice, and check out our Code of Conduct.
Bob is a new contributor. Be nice, and check out our Code of Conduct.
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%2f473838%2fhow-to-set-the-font-size-to-11-5pt%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
5
The default
article
class only has three choices10pt
,11pt
and12pt
, but you must not think of these like the little font size drop down menu in Microsoft word. These values are used to configure many aspects of the document layout, the size of subscripts and superscripts, the sizes of headings. Other font sizes are defined relative to these numbers. It's not designed to let you just choose an arbitrary value.– Au101
8 hours ago
However, you may be interested in tex.stackexchange.com/questions/47517/… tex.stackexchange.com/questions/200015/… tex.stackexchange.com/questions/340473/options-for-font-size etc.
– Au101
8 hours ago