book title smaller than section headers
I recently began using Pandoc to generate PDF files, using the LaTeX engine, from MarkDown source.
Presently, using the book class, I find a distracting attribute of the output is that the major headers are in a more prominent typesetting than even the book title, the former being large and bold, the latter being less large and normal weight.
Following the simple principle that whatever is more important is bigger and heavier, I am surprised to find this result from the tools.
Is this effect normal, or, to anyone, desirable? How might I override or correct it?
For illustration, I processed the text from a classic novel, and included a representation of the result.
Note: I had tried using the KOMA-Script book class, which corrected this effect, though at the expense of making the margins much smaller, whereas the standard class limits the amount of text on each page to a much more manageable quantity. I would wish somehow to marry the best features of each layout.
books pandoc markdown
add a comment |
I recently began using Pandoc to generate PDF files, using the LaTeX engine, from MarkDown source.
Presently, using the book class, I find a distracting attribute of the output is that the major headers are in a more prominent typesetting than even the book title, the former being large and bold, the latter being less large and normal weight.
Following the simple principle that whatever is more important is bigger and heavier, I am surprised to find this result from the tools.
Is this effect normal, or, to anyone, desirable? How might I override or correct it?
For illustration, I processed the text from a classic novel, and included a representation of the result.
Note: I had tried using the KOMA-Script book class, which corrected this effect, though at the expense of making the margins much smaller, whereas the standard class limits the amount of text on each page to a much more manageable quantity. I would wish somehow to marry the best features of each layout.
books pandoc markdown
add a comment |
I recently began using Pandoc to generate PDF files, using the LaTeX engine, from MarkDown source.
Presently, using the book class, I find a distracting attribute of the output is that the major headers are in a more prominent typesetting than even the book title, the former being large and bold, the latter being less large and normal weight.
Following the simple principle that whatever is more important is bigger and heavier, I am surprised to find this result from the tools.
Is this effect normal, or, to anyone, desirable? How might I override or correct it?
For illustration, I processed the text from a classic novel, and included a representation of the result.
Note: I had tried using the KOMA-Script book class, which corrected this effect, though at the expense of making the margins much smaller, whereas the standard class limits the amount of text on each page to a much more manageable quantity. I would wish somehow to marry the best features of each layout.
books pandoc markdown
I recently began using Pandoc to generate PDF files, using the LaTeX engine, from MarkDown source.
Presently, using the book class, I find a distracting attribute of the output is that the major headers are in a more prominent typesetting than even the book title, the former being large and bold, the latter being less large and normal weight.
Following the simple principle that whatever is more important is bigger and heavier, I am surprised to find this result from the tools.
Is this effect normal, or, to anyone, desirable? How might I override or correct it?
For illustration, I processed the text from a classic novel, and included a representation of the result.
Note: I had tried using the KOMA-Script book class, which corrected this effect, though at the expense of making the margins much smaller, whereas the standard class limits the amount of text on each page to a much more manageable quantity. I would wish somehow to marry the best features of each layout.
books pandoc markdown
books pandoc markdown
asked Feb 2 at 1:25
eplepl
132
132
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can add things to the preamble using the header-includes
field of the pandoc markdown preamble. Then you could include the titling
package to style the title page to your liking.
Full text of “A Tale of Two Cities” by Charles Dickens is available from Project Gutenberg.
---
title: A Tale of Two Cities
author: Charles Dickens
documentclass: book
header-includes:
usepackage{titling}
pretitle{begin{center}Hugebfseries}
posttitle{end{center}vspace{0.5em}}
---
# The Period
It was the best of times,
it was the worst of times,
it was the age of wisdom,
it was the age of foolishness,
it was the epoch of belief,
it was the epoch of incredulity,
it was the season of Light,
it was the season of Darkness,
it was the spring of hope,
it was the winter of despair,
we had everything before us,
we had nothing before us,
we were all going direct to Heaven,
we were all going direct the other way--
in short, the period was so far like the present period, that some of
its noisiest authorities insisted on its being received, for good or for
evil, in the superlative degree of comparison only.
There were a king with a large jaw and a queen with a plain face, on the
throne of England; there were a king with a large jaw and a queen with
a fair face, on the throne of France. In both countries it was clearer
than crystal to the lords of the State preserves of loaves and fishes,
that things in general were settled for ever.
It was the year of Our Lord one thousand seven hundred and seventy-five.
Spiritual revelations were conceded to England at that favoured period,
as at this. Mrs. Southcott had recently attained her five-and-twentieth
blessed birthday, of whom a prophetic private in the Life Guards had
heralded the sublime appearance by announcing that arrangements were
made for the swallowing up of London and Westminster. Even the Cock-lane
ghost had been laid only a round dozen of years, after rapping out its
messages, as the spirits of this very year last past (supernaturally
deficient in originality) rapped out theirs. Mere messages in the
earthly order of events had lately come to the English Crown and People,
from a congress of British subjects in America: which, strange
to relate, have proved more important to the human race than any
communications yet received through any of the chickens of the Cock-lane
brood.
Yes, I am happy to confirm that this works. My original post asks a few related questions. In addition to asking how to change this behavior, I also asked why it is occurring. Is this appearance the default for thebook
class? Am I naive to some typographical principle behind the decision for a book title smaller than a chapter title? (Also, how is the "Chapter 1" label being generated in your rendering? My results lack it, though I used very similar YAML/MarkDown source files to yours.)
– epl
Feb 2 at 20:33
@epl Yes, this is intended, because the “title page” generated by thebook
class is actually the half-title (German: Schmutztitel). It is intended that you design the book cover separately. The “Chapter 1” in my example is generated by thebook
class, however I am using the defaultpandoc
template, so if you are using something else your result might differ.
– Henri Menke
Feb 2 at 21:16
I thought that the book class facilitates professional-looking typesetting without requiring knowledge of or investment in custom art or design. Do I misunderstand the purpose? Is this a difference from the KOMA-Script classes? I feel nervous about taking a template carefully designed by experts, and tweaking it with specific measurements, without properly understanding the underlying considerations. Are solutions available more appropriate to my needs? Is a tutorial available to better understand the basic typesetting concerns needed to use LaTeX or similar tools more effectively?
– epl
Feb 3 at 19:14
@epl If you want to design a book, you should learn about book design, just as you would learn about car repairs before attempting to repair a car. You might want to check out The Elements of Typographic Style. It's a good book, I recommend it. Otherwise there is also thememoir
document class which has an extensive manual, containing an introduction to book design including examples of how to apply the design withmemoir
itself: ctan.org/pkg/memoir
– Henri Menke
Feb 3 at 20:33
Slight misunderstanding. I am looking to write a book, not to design one. So far no design exists, which is why I am lacking a cover as you have described, and ask that LaTeX generate a full title page for me. I need something that requires me to supply only a title, my name, and the text. Best would be a template that meets these needs out of the box, without needing to be tweaked. My ambitions may be more closely analogous to changing fluids in a car, not performing full-scale repairs. A tutorial might be instructive if it can be read in a few sittings at most, compared to a full-size book.
– epl
Feb 3 at 21:38
|
show 2 more comments
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%2f472979%2fbook-title-smaller-than-section-headers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can add things to the preamble using the header-includes
field of the pandoc markdown preamble. Then you could include the titling
package to style the title page to your liking.
Full text of “A Tale of Two Cities” by Charles Dickens is available from Project Gutenberg.
---
title: A Tale of Two Cities
author: Charles Dickens
documentclass: book
header-includes:
usepackage{titling}
pretitle{begin{center}Hugebfseries}
posttitle{end{center}vspace{0.5em}}
---
# The Period
It was the best of times,
it was the worst of times,
it was the age of wisdom,
it was the age of foolishness,
it was the epoch of belief,
it was the epoch of incredulity,
it was the season of Light,
it was the season of Darkness,
it was the spring of hope,
it was the winter of despair,
we had everything before us,
we had nothing before us,
we were all going direct to Heaven,
we were all going direct the other way--
in short, the period was so far like the present period, that some of
its noisiest authorities insisted on its being received, for good or for
evil, in the superlative degree of comparison only.
There were a king with a large jaw and a queen with a plain face, on the
throne of England; there were a king with a large jaw and a queen with
a fair face, on the throne of France. In both countries it was clearer
than crystal to the lords of the State preserves of loaves and fishes,
that things in general were settled for ever.
It was the year of Our Lord one thousand seven hundred and seventy-five.
Spiritual revelations were conceded to England at that favoured period,
as at this. Mrs. Southcott had recently attained her five-and-twentieth
blessed birthday, of whom a prophetic private in the Life Guards had
heralded the sublime appearance by announcing that arrangements were
made for the swallowing up of London and Westminster. Even the Cock-lane
ghost had been laid only a round dozen of years, after rapping out its
messages, as the spirits of this very year last past (supernaturally
deficient in originality) rapped out theirs. Mere messages in the
earthly order of events had lately come to the English Crown and People,
from a congress of British subjects in America: which, strange
to relate, have proved more important to the human race than any
communications yet received through any of the chickens of the Cock-lane
brood.
Yes, I am happy to confirm that this works. My original post asks a few related questions. In addition to asking how to change this behavior, I also asked why it is occurring. Is this appearance the default for thebook
class? Am I naive to some typographical principle behind the decision for a book title smaller than a chapter title? (Also, how is the "Chapter 1" label being generated in your rendering? My results lack it, though I used very similar YAML/MarkDown source files to yours.)
– epl
Feb 2 at 20:33
@epl Yes, this is intended, because the “title page” generated by thebook
class is actually the half-title (German: Schmutztitel). It is intended that you design the book cover separately. The “Chapter 1” in my example is generated by thebook
class, however I am using the defaultpandoc
template, so if you are using something else your result might differ.
– Henri Menke
Feb 2 at 21:16
I thought that the book class facilitates professional-looking typesetting without requiring knowledge of or investment in custom art or design. Do I misunderstand the purpose? Is this a difference from the KOMA-Script classes? I feel nervous about taking a template carefully designed by experts, and tweaking it with specific measurements, without properly understanding the underlying considerations. Are solutions available more appropriate to my needs? Is a tutorial available to better understand the basic typesetting concerns needed to use LaTeX or similar tools more effectively?
– epl
Feb 3 at 19:14
@epl If you want to design a book, you should learn about book design, just as you would learn about car repairs before attempting to repair a car. You might want to check out The Elements of Typographic Style. It's a good book, I recommend it. Otherwise there is also thememoir
document class which has an extensive manual, containing an introduction to book design including examples of how to apply the design withmemoir
itself: ctan.org/pkg/memoir
– Henri Menke
Feb 3 at 20:33
Slight misunderstanding. I am looking to write a book, not to design one. So far no design exists, which is why I am lacking a cover as you have described, and ask that LaTeX generate a full title page for me. I need something that requires me to supply only a title, my name, and the text. Best would be a template that meets these needs out of the box, without needing to be tweaked. My ambitions may be more closely analogous to changing fluids in a car, not performing full-scale repairs. A tutorial might be instructive if it can be read in a few sittings at most, compared to a full-size book.
– epl
Feb 3 at 21:38
|
show 2 more comments
You can add things to the preamble using the header-includes
field of the pandoc markdown preamble. Then you could include the titling
package to style the title page to your liking.
Full text of “A Tale of Two Cities” by Charles Dickens is available from Project Gutenberg.
---
title: A Tale of Two Cities
author: Charles Dickens
documentclass: book
header-includes:
usepackage{titling}
pretitle{begin{center}Hugebfseries}
posttitle{end{center}vspace{0.5em}}
---
# The Period
It was the best of times,
it was the worst of times,
it was the age of wisdom,
it was the age of foolishness,
it was the epoch of belief,
it was the epoch of incredulity,
it was the season of Light,
it was the season of Darkness,
it was the spring of hope,
it was the winter of despair,
we had everything before us,
we had nothing before us,
we were all going direct to Heaven,
we were all going direct the other way--
in short, the period was so far like the present period, that some of
its noisiest authorities insisted on its being received, for good or for
evil, in the superlative degree of comparison only.
There were a king with a large jaw and a queen with a plain face, on the
throne of England; there were a king with a large jaw and a queen with
a fair face, on the throne of France. In both countries it was clearer
than crystal to the lords of the State preserves of loaves and fishes,
that things in general were settled for ever.
It was the year of Our Lord one thousand seven hundred and seventy-five.
Spiritual revelations were conceded to England at that favoured period,
as at this. Mrs. Southcott had recently attained her five-and-twentieth
blessed birthday, of whom a prophetic private in the Life Guards had
heralded the sublime appearance by announcing that arrangements were
made for the swallowing up of London and Westminster. Even the Cock-lane
ghost had been laid only a round dozen of years, after rapping out its
messages, as the spirits of this very year last past (supernaturally
deficient in originality) rapped out theirs. Mere messages in the
earthly order of events had lately come to the English Crown and People,
from a congress of British subjects in America: which, strange
to relate, have proved more important to the human race than any
communications yet received through any of the chickens of the Cock-lane
brood.
Yes, I am happy to confirm that this works. My original post asks a few related questions. In addition to asking how to change this behavior, I also asked why it is occurring. Is this appearance the default for thebook
class? Am I naive to some typographical principle behind the decision for a book title smaller than a chapter title? (Also, how is the "Chapter 1" label being generated in your rendering? My results lack it, though I used very similar YAML/MarkDown source files to yours.)
– epl
Feb 2 at 20:33
@epl Yes, this is intended, because the “title page” generated by thebook
class is actually the half-title (German: Schmutztitel). It is intended that you design the book cover separately. The “Chapter 1” in my example is generated by thebook
class, however I am using the defaultpandoc
template, so if you are using something else your result might differ.
– Henri Menke
Feb 2 at 21:16
I thought that the book class facilitates professional-looking typesetting without requiring knowledge of or investment in custom art or design. Do I misunderstand the purpose? Is this a difference from the KOMA-Script classes? I feel nervous about taking a template carefully designed by experts, and tweaking it with specific measurements, without properly understanding the underlying considerations. Are solutions available more appropriate to my needs? Is a tutorial available to better understand the basic typesetting concerns needed to use LaTeX or similar tools more effectively?
– epl
Feb 3 at 19:14
@epl If you want to design a book, you should learn about book design, just as you would learn about car repairs before attempting to repair a car. You might want to check out The Elements of Typographic Style. It's a good book, I recommend it. Otherwise there is also thememoir
document class which has an extensive manual, containing an introduction to book design including examples of how to apply the design withmemoir
itself: ctan.org/pkg/memoir
– Henri Menke
Feb 3 at 20:33
Slight misunderstanding. I am looking to write a book, not to design one. So far no design exists, which is why I am lacking a cover as you have described, and ask that LaTeX generate a full title page for me. I need something that requires me to supply only a title, my name, and the text. Best would be a template that meets these needs out of the box, without needing to be tweaked. My ambitions may be more closely analogous to changing fluids in a car, not performing full-scale repairs. A tutorial might be instructive if it can be read in a few sittings at most, compared to a full-size book.
– epl
Feb 3 at 21:38
|
show 2 more comments
You can add things to the preamble using the header-includes
field of the pandoc markdown preamble. Then you could include the titling
package to style the title page to your liking.
Full text of “A Tale of Two Cities” by Charles Dickens is available from Project Gutenberg.
---
title: A Tale of Two Cities
author: Charles Dickens
documentclass: book
header-includes:
usepackage{titling}
pretitle{begin{center}Hugebfseries}
posttitle{end{center}vspace{0.5em}}
---
# The Period
It was the best of times,
it was the worst of times,
it was the age of wisdom,
it was the age of foolishness,
it was the epoch of belief,
it was the epoch of incredulity,
it was the season of Light,
it was the season of Darkness,
it was the spring of hope,
it was the winter of despair,
we had everything before us,
we had nothing before us,
we were all going direct to Heaven,
we were all going direct the other way--
in short, the period was so far like the present period, that some of
its noisiest authorities insisted on its being received, for good or for
evil, in the superlative degree of comparison only.
There were a king with a large jaw and a queen with a plain face, on the
throne of England; there were a king with a large jaw and a queen with
a fair face, on the throne of France. In both countries it was clearer
than crystal to the lords of the State preserves of loaves and fishes,
that things in general were settled for ever.
It was the year of Our Lord one thousand seven hundred and seventy-five.
Spiritual revelations were conceded to England at that favoured period,
as at this. Mrs. Southcott had recently attained her five-and-twentieth
blessed birthday, of whom a prophetic private in the Life Guards had
heralded the sublime appearance by announcing that arrangements were
made for the swallowing up of London and Westminster. Even the Cock-lane
ghost had been laid only a round dozen of years, after rapping out its
messages, as the spirits of this very year last past (supernaturally
deficient in originality) rapped out theirs. Mere messages in the
earthly order of events had lately come to the English Crown and People,
from a congress of British subjects in America: which, strange
to relate, have proved more important to the human race than any
communications yet received through any of the chickens of the Cock-lane
brood.
You can add things to the preamble using the header-includes
field of the pandoc markdown preamble. Then you could include the titling
package to style the title page to your liking.
Full text of “A Tale of Two Cities” by Charles Dickens is available from Project Gutenberg.
---
title: A Tale of Two Cities
author: Charles Dickens
documentclass: book
header-includes:
usepackage{titling}
pretitle{begin{center}Hugebfseries}
posttitle{end{center}vspace{0.5em}}
---
# The Period
It was the best of times,
it was the worst of times,
it was the age of wisdom,
it was the age of foolishness,
it was the epoch of belief,
it was the epoch of incredulity,
it was the season of Light,
it was the season of Darkness,
it was the spring of hope,
it was the winter of despair,
we had everything before us,
we had nothing before us,
we were all going direct to Heaven,
we were all going direct the other way--
in short, the period was so far like the present period, that some of
its noisiest authorities insisted on its being received, for good or for
evil, in the superlative degree of comparison only.
There were a king with a large jaw and a queen with a plain face, on the
throne of England; there were a king with a large jaw and a queen with
a fair face, on the throne of France. In both countries it was clearer
than crystal to the lords of the State preserves of loaves and fishes,
that things in general were settled for ever.
It was the year of Our Lord one thousand seven hundred and seventy-five.
Spiritual revelations were conceded to England at that favoured period,
as at this. Mrs. Southcott had recently attained her five-and-twentieth
blessed birthday, of whom a prophetic private in the Life Guards had
heralded the sublime appearance by announcing that arrangements were
made for the swallowing up of London and Westminster. Even the Cock-lane
ghost had been laid only a round dozen of years, after rapping out its
messages, as the spirits of this very year last past (supernaturally
deficient in originality) rapped out theirs. Mere messages in the
earthly order of events had lately come to the English Crown and People,
from a congress of British subjects in America: which, strange
to relate, have proved more important to the human race than any
communications yet received through any of the chickens of the Cock-lane
brood.
answered Feb 2 at 2:04
Henri MenkeHenri Menke
73.2k8162273
73.2k8162273
Yes, I am happy to confirm that this works. My original post asks a few related questions. In addition to asking how to change this behavior, I also asked why it is occurring. Is this appearance the default for thebook
class? Am I naive to some typographical principle behind the decision for a book title smaller than a chapter title? (Also, how is the "Chapter 1" label being generated in your rendering? My results lack it, though I used very similar YAML/MarkDown source files to yours.)
– epl
Feb 2 at 20:33
@epl Yes, this is intended, because the “title page” generated by thebook
class is actually the half-title (German: Schmutztitel). It is intended that you design the book cover separately. The “Chapter 1” in my example is generated by thebook
class, however I am using the defaultpandoc
template, so if you are using something else your result might differ.
– Henri Menke
Feb 2 at 21:16
I thought that the book class facilitates professional-looking typesetting without requiring knowledge of or investment in custom art or design. Do I misunderstand the purpose? Is this a difference from the KOMA-Script classes? I feel nervous about taking a template carefully designed by experts, and tweaking it with specific measurements, without properly understanding the underlying considerations. Are solutions available more appropriate to my needs? Is a tutorial available to better understand the basic typesetting concerns needed to use LaTeX or similar tools more effectively?
– epl
Feb 3 at 19:14
@epl If you want to design a book, you should learn about book design, just as you would learn about car repairs before attempting to repair a car. You might want to check out The Elements of Typographic Style. It's a good book, I recommend it. Otherwise there is also thememoir
document class which has an extensive manual, containing an introduction to book design including examples of how to apply the design withmemoir
itself: ctan.org/pkg/memoir
– Henri Menke
Feb 3 at 20:33
Slight misunderstanding. I am looking to write a book, not to design one. So far no design exists, which is why I am lacking a cover as you have described, and ask that LaTeX generate a full title page for me. I need something that requires me to supply only a title, my name, and the text. Best would be a template that meets these needs out of the box, without needing to be tweaked. My ambitions may be more closely analogous to changing fluids in a car, not performing full-scale repairs. A tutorial might be instructive if it can be read in a few sittings at most, compared to a full-size book.
– epl
Feb 3 at 21:38
|
show 2 more comments
Yes, I am happy to confirm that this works. My original post asks a few related questions. In addition to asking how to change this behavior, I also asked why it is occurring. Is this appearance the default for thebook
class? Am I naive to some typographical principle behind the decision for a book title smaller than a chapter title? (Also, how is the "Chapter 1" label being generated in your rendering? My results lack it, though I used very similar YAML/MarkDown source files to yours.)
– epl
Feb 2 at 20:33
@epl Yes, this is intended, because the “title page” generated by thebook
class is actually the half-title (German: Schmutztitel). It is intended that you design the book cover separately. The “Chapter 1” in my example is generated by thebook
class, however I am using the defaultpandoc
template, so if you are using something else your result might differ.
– Henri Menke
Feb 2 at 21:16
I thought that the book class facilitates professional-looking typesetting without requiring knowledge of or investment in custom art or design. Do I misunderstand the purpose? Is this a difference from the KOMA-Script classes? I feel nervous about taking a template carefully designed by experts, and tweaking it with specific measurements, without properly understanding the underlying considerations. Are solutions available more appropriate to my needs? Is a tutorial available to better understand the basic typesetting concerns needed to use LaTeX or similar tools more effectively?
– epl
Feb 3 at 19:14
@epl If you want to design a book, you should learn about book design, just as you would learn about car repairs before attempting to repair a car. You might want to check out The Elements of Typographic Style. It's a good book, I recommend it. Otherwise there is also thememoir
document class which has an extensive manual, containing an introduction to book design including examples of how to apply the design withmemoir
itself: ctan.org/pkg/memoir
– Henri Menke
Feb 3 at 20:33
Slight misunderstanding. I am looking to write a book, not to design one. So far no design exists, which is why I am lacking a cover as you have described, and ask that LaTeX generate a full title page for me. I need something that requires me to supply only a title, my name, and the text. Best would be a template that meets these needs out of the box, without needing to be tweaked. My ambitions may be more closely analogous to changing fluids in a car, not performing full-scale repairs. A tutorial might be instructive if it can be read in a few sittings at most, compared to a full-size book.
– epl
Feb 3 at 21:38
Yes, I am happy to confirm that this works. My original post asks a few related questions. In addition to asking how to change this behavior, I also asked why it is occurring. Is this appearance the default for the
book
class? Am I naive to some typographical principle behind the decision for a book title smaller than a chapter title? (Also, how is the "Chapter 1" label being generated in your rendering? My results lack it, though I used very similar YAML/MarkDown source files to yours.)– epl
Feb 2 at 20:33
Yes, I am happy to confirm that this works. My original post asks a few related questions. In addition to asking how to change this behavior, I also asked why it is occurring. Is this appearance the default for the
book
class? Am I naive to some typographical principle behind the decision for a book title smaller than a chapter title? (Also, how is the "Chapter 1" label being generated in your rendering? My results lack it, though I used very similar YAML/MarkDown source files to yours.)– epl
Feb 2 at 20:33
@epl Yes, this is intended, because the “title page” generated by the
book
class is actually the half-title (German: Schmutztitel). It is intended that you design the book cover separately. The “Chapter 1” in my example is generated by the book
class, however I am using the default pandoc
template, so if you are using something else your result might differ.– Henri Menke
Feb 2 at 21:16
@epl Yes, this is intended, because the “title page” generated by the
book
class is actually the half-title (German: Schmutztitel). It is intended that you design the book cover separately. The “Chapter 1” in my example is generated by the book
class, however I am using the default pandoc
template, so if you are using something else your result might differ.– Henri Menke
Feb 2 at 21:16
I thought that the book class facilitates professional-looking typesetting without requiring knowledge of or investment in custom art or design. Do I misunderstand the purpose? Is this a difference from the KOMA-Script classes? I feel nervous about taking a template carefully designed by experts, and tweaking it with specific measurements, without properly understanding the underlying considerations. Are solutions available more appropriate to my needs? Is a tutorial available to better understand the basic typesetting concerns needed to use LaTeX or similar tools more effectively?
– epl
Feb 3 at 19:14
I thought that the book class facilitates professional-looking typesetting without requiring knowledge of or investment in custom art or design. Do I misunderstand the purpose? Is this a difference from the KOMA-Script classes? I feel nervous about taking a template carefully designed by experts, and tweaking it with specific measurements, without properly understanding the underlying considerations. Are solutions available more appropriate to my needs? Is a tutorial available to better understand the basic typesetting concerns needed to use LaTeX or similar tools more effectively?
– epl
Feb 3 at 19:14
@epl If you want to design a book, you should learn about book design, just as you would learn about car repairs before attempting to repair a car. You might want to check out The Elements of Typographic Style. It's a good book, I recommend it. Otherwise there is also the
memoir
document class which has an extensive manual, containing an introduction to book design including examples of how to apply the design with memoir
itself: ctan.org/pkg/memoir– Henri Menke
Feb 3 at 20:33
@epl If you want to design a book, you should learn about book design, just as you would learn about car repairs before attempting to repair a car. You might want to check out The Elements of Typographic Style. It's a good book, I recommend it. Otherwise there is also the
memoir
document class which has an extensive manual, containing an introduction to book design including examples of how to apply the design with memoir
itself: ctan.org/pkg/memoir– Henri Menke
Feb 3 at 20:33
Slight misunderstanding. I am looking to write a book, not to design one. So far no design exists, which is why I am lacking a cover as you have described, and ask that LaTeX generate a full title page for me. I need something that requires me to supply only a title, my name, and the text. Best would be a template that meets these needs out of the box, without needing to be tweaked. My ambitions may be more closely analogous to changing fluids in a car, not performing full-scale repairs. A tutorial might be instructive if it can be read in a few sittings at most, compared to a full-size book.
– epl
Feb 3 at 21:38
Slight misunderstanding. I am looking to write a book, not to design one. So far no design exists, which is why I am lacking a cover as you have described, and ask that LaTeX generate a full title page for me. I need something that requires me to supply only a title, my name, and the text. Best would be a template that meets these needs out of the box, without needing to be tweaked. My ambitions may be more closely analogous to changing fluids in a car, not performing full-scale repairs. A tutorial might be instructive if it can be read in a few sittings at most, compared to a full-size book.
– epl
Feb 3 at 21:38
|
show 2 more comments
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%2f472979%2fbook-title-smaller-than-section-headers%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