Use (remember picture, overlay) TikZ picture to design parts, chapters, ToC, Bibliography, Index
up vote
1
down vote
favorite
What I have
I am designing the format of the parts and chapters in my document using TikZ picture, with remember picture, overlay
option, like this:
documentclass{book}
usepackage{tikz}
usetikzlibrary{positioning}
usepackage{lipsum}
usepackage{color,xcolor}
usepackage{graphicx}
definecolor{bggray}{RGB}{215,215,215}
begin{document}
begin{tikzpicture}[remember picture, overlay]
node[below right=4.8cm and 0cm of current page.north east] (a) {};
fill[bggray] (current page.north west) rectangle (a);
node[below right=1cm and 2cm of current page.north west,color=blue!90] {hugebfseries Part I};
node[below right=2.5cm and 2cm of current page.north west,color=blue]{fontsize{30pt}{30pt}selectfontscshape Foundations};
node[below left=1cm and 3cm of current page.north east] (pic1) {includegraphics[width=3cm]{0.png}};
end{tikzpicture}
end{document}
What I want
Now I have some problems:
Overall customization I want to use this design for all parts and chapters (actually in chapters I will change a bit in colors and sizes). This should satisfy
The commands to use the design, like
part{}
andchapter{}
in normal design, should be used simply. I prefer something like
mypart{Foundations}{abc.jpg}
mychapter{Foundations}{abc.jpg}
The parts and chapters should be numbered as usual.
There should be contents referring to the parts/chapter in the Table of Contents, and if I use
hyperref
package, the ToC contents should be clickable.
The Table of Contents, Bibliography, Index, etc. should be of the same design. In other word, I want
tableofcontents
to be as
mychapter*{Table of Contents}{} % There will be no pictures included
and to output the result
by using
tableofcontents
only.
Some remarks
I have read this question: Problem using a tikzpicture in titleformat, but that is not what I mean, because the question is about normal TikZ picture in title design, but not about remember picture, overlay
TikZ picture in title design.
You can either help me to solve my problem, or edit the accepted answer in the attached question so that it suits the requirements well.
All your helps will be highly appreciated!
Thank you in advance!
Edit 2
Following @marmot's answer, and the answer actually almost help me solve the issue. However, the ToC became
Chapter 0
CONTENTS
How to delete Chapter 0
?
tikz-pgf table-of-contents positioning chapters parts
add a comment |
up vote
1
down vote
favorite
What I have
I am designing the format of the parts and chapters in my document using TikZ picture, with remember picture, overlay
option, like this:
documentclass{book}
usepackage{tikz}
usetikzlibrary{positioning}
usepackage{lipsum}
usepackage{color,xcolor}
usepackage{graphicx}
definecolor{bggray}{RGB}{215,215,215}
begin{document}
begin{tikzpicture}[remember picture, overlay]
node[below right=4.8cm and 0cm of current page.north east] (a) {};
fill[bggray] (current page.north west) rectangle (a);
node[below right=1cm and 2cm of current page.north west,color=blue!90] {hugebfseries Part I};
node[below right=2.5cm and 2cm of current page.north west,color=blue]{fontsize{30pt}{30pt}selectfontscshape Foundations};
node[below left=1cm and 3cm of current page.north east] (pic1) {includegraphics[width=3cm]{0.png}};
end{tikzpicture}
end{document}
What I want
Now I have some problems:
Overall customization I want to use this design for all parts and chapters (actually in chapters I will change a bit in colors and sizes). This should satisfy
The commands to use the design, like
part{}
andchapter{}
in normal design, should be used simply. I prefer something like
mypart{Foundations}{abc.jpg}
mychapter{Foundations}{abc.jpg}
The parts and chapters should be numbered as usual.
There should be contents referring to the parts/chapter in the Table of Contents, and if I use
hyperref
package, the ToC contents should be clickable.
The Table of Contents, Bibliography, Index, etc. should be of the same design. In other word, I want
tableofcontents
to be as
mychapter*{Table of Contents}{} % There will be no pictures included
and to output the result
by using
tableofcontents
only.
Some remarks
I have read this question: Problem using a tikzpicture in titleformat, but that is not what I mean, because the question is about normal TikZ picture in title design, but not about remember picture, overlay
TikZ picture in title design.
You can either help me to solve my problem, or edit the accepted answer in the attached question so that it suits the requirements well.
All your helps will be highly appreciated!
Thank you in advance!
Edit 2
Following @marmot's answer, and the answer actually almost help me solve the issue. However, the ToC became
Chapter 0
CONTENTS
How to delete Chapter 0
?
tikz-pgf table-of-contents positioning chapters parts
@marmot I have edited my question using lists. Hope you understand the question better. Thank you very much for your feedback!
– Dũng Vũ
2 days ago
May be you are interested in this blog article series about a complete book design. It's based inmemoir
but will give you an idea about the process. See: latex-my.blogspot.com/search/label/bookdesign
– Ignasi
yesterday
@Ignasi Sadly your link is not available for me. Google Chrome saidlatex-my.blogspot.com’s server IP address could not be found.
:(
– Dũng Vũ
yesterday
Try with this one. It provides a template with all code and makes reference to original posts: liantze.penguinattack.org/latextypesetting.html#bookdesign
– Ignasi
yesterday
@Ignasi Thank you!
– Dũng Vũ
yesterday
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
What I have
I am designing the format of the parts and chapters in my document using TikZ picture, with remember picture, overlay
option, like this:
documentclass{book}
usepackage{tikz}
usetikzlibrary{positioning}
usepackage{lipsum}
usepackage{color,xcolor}
usepackage{graphicx}
definecolor{bggray}{RGB}{215,215,215}
begin{document}
begin{tikzpicture}[remember picture, overlay]
node[below right=4.8cm and 0cm of current page.north east] (a) {};
fill[bggray] (current page.north west) rectangle (a);
node[below right=1cm and 2cm of current page.north west,color=blue!90] {hugebfseries Part I};
node[below right=2.5cm and 2cm of current page.north west,color=blue]{fontsize{30pt}{30pt}selectfontscshape Foundations};
node[below left=1cm and 3cm of current page.north east] (pic1) {includegraphics[width=3cm]{0.png}};
end{tikzpicture}
end{document}
What I want
Now I have some problems:
Overall customization I want to use this design for all parts and chapters (actually in chapters I will change a bit in colors and sizes). This should satisfy
The commands to use the design, like
part{}
andchapter{}
in normal design, should be used simply. I prefer something like
mypart{Foundations}{abc.jpg}
mychapter{Foundations}{abc.jpg}
The parts and chapters should be numbered as usual.
There should be contents referring to the parts/chapter in the Table of Contents, and if I use
hyperref
package, the ToC contents should be clickable.
The Table of Contents, Bibliography, Index, etc. should be of the same design. In other word, I want
tableofcontents
to be as
mychapter*{Table of Contents}{} % There will be no pictures included
and to output the result
by using
tableofcontents
only.
Some remarks
I have read this question: Problem using a tikzpicture in titleformat, but that is not what I mean, because the question is about normal TikZ picture in title design, but not about remember picture, overlay
TikZ picture in title design.
You can either help me to solve my problem, or edit the accepted answer in the attached question so that it suits the requirements well.
All your helps will be highly appreciated!
Thank you in advance!
Edit 2
Following @marmot's answer, and the answer actually almost help me solve the issue. However, the ToC became
Chapter 0
CONTENTS
How to delete Chapter 0
?
tikz-pgf table-of-contents positioning chapters parts
What I have
I am designing the format of the parts and chapters in my document using TikZ picture, with remember picture, overlay
option, like this:
documentclass{book}
usepackage{tikz}
usetikzlibrary{positioning}
usepackage{lipsum}
usepackage{color,xcolor}
usepackage{graphicx}
definecolor{bggray}{RGB}{215,215,215}
begin{document}
begin{tikzpicture}[remember picture, overlay]
node[below right=4.8cm and 0cm of current page.north east] (a) {};
fill[bggray] (current page.north west) rectangle (a);
node[below right=1cm and 2cm of current page.north west,color=blue!90] {hugebfseries Part I};
node[below right=2.5cm and 2cm of current page.north west,color=blue]{fontsize{30pt}{30pt}selectfontscshape Foundations};
node[below left=1cm and 3cm of current page.north east] (pic1) {includegraphics[width=3cm]{0.png}};
end{tikzpicture}
end{document}
What I want
Now I have some problems:
Overall customization I want to use this design for all parts and chapters (actually in chapters I will change a bit in colors and sizes). This should satisfy
The commands to use the design, like
part{}
andchapter{}
in normal design, should be used simply. I prefer something like
mypart{Foundations}{abc.jpg}
mychapter{Foundations}{abc.jpg}
The parts and chapters should be numbered as usual.
There should be contents referring to the parts/chapter in the Table of Contents, and if I use
hyperref
package, the ToC contents should be clickable.
The Table of Contents, Bibliography, Index, etc. should be of the same design. In other word, I want
tableofcontents
to be as
mychapter*{Table of Contents}{} % There will be no pictures included
and to output the result
by using
tableofcontents
only.
Some remarks
I have read this question: Problem using a tikzpicture in titleformat, but that is not what I mean, because the question is about normal TikZ picture in title design, but not about remember picture, overlay
TikZ picture in title design.
You can either help me to solve my problem, or edit the accepted answer in the attached question so that it suits the requirements well.
All your helps will be highly appreciated!
Thank you in advance!
Edit 2
Following @marmot's answer, and the answer actually almost help me solve the issue. However, the ToC became
Chapter 0
CONTENTS
How to delete Chapter 0
?
tikz-pgf table-of-contents positioning chapters parts
tikz-pgf table-of-contents positioning chapters parts
edited yesterday
asked 2 days ago
Dũng Vũ
1,11920
1,11920
@marmot I have edited my question using lists. Hope you understand the question better. Thank you very much for your feedback!
– Dũng Vũ
2 days ago
May be you are interested in this blog article series about a complete book design. It's based inmemoir
but will give you an idea about the process. See: latex-my.blogspot.com/search/label/bookdesign
– Ignasi
yesterday
@Ignasi Sadly your link is not available for me. Google Chrome saidlatex-my.blogspot.com’s server IP address could not be found.
:(
– Dũng Vũ
yesterday
Try with this one. It provides a template with all code and makes reference to original posts: liantze.penguinattack.org/latextypesetting.html#bookdesign
– Ignasi
yesterday
@Ignasi Thank you!
– Dũng Vũ
yesterday
add a comment |
@marmot I have edited my question using lists. Hope you understand the question better. Thank you very much for your feedback!
– Dũng Vũ
2 days ago
May be you are interested in this blog article series about a complete book design. It's based inmemoir
but will give you an idea about the process. See: latex-my.blogspot.com/search/label/bookdesign
– Ignasi
yesterday
@Ignasi Sadly your link is not available for me. Google Chrome saidlatex-my.blogspot.com’s server IP address could not be found.
:(
– Dũng Vũ
yesterday
Try with this one. It provides a template with all code and makes reference to original posts: liantze.penguinattack.org/latextypesetting.html#bookdesign
– Ignasi
yesterday
@Ignasi Thank you!
– Dũng Vũ
yesterday
@marmot I have edited my question using lists. Hope you understand the question better. Thank you very much for your feedback!
– Dũng Vũ
2 days ago
@marmot I have edited my question using lists. Hope you understand the question better. Thank you very much for your feedback!
– Dũng Vũ
2 days ago
May be you are interested in this blog article series about a complete book design. It's based in
memoir
but will give you an idea about the process. See: latex-my.blogspot.com/search/label/bookdesign– Ignasi
yesterday
May be you are interested in this blog article series about a complete book design. It's based in
memoir
but will give you an idea about the process. See: latex-my.blogspot.com/search/label/bookdesign– Ignasi
yesterday
@Ignasi Sadly your link is not available for me. Google Chrome said
latex-my.blogspot.com’s server IP address could not be found.
:(– Dũng Vũ
yesterday
@Ignasi Sadly your link is not available for me. Google Chrome said
latex-my.blogspot.com’s server IP address could not be found.
:(– Dũng Vũ
yesterday
Try with this one. It provides a template with all code and makes reference to original posts: liantze.penguinattack.org/latextypesetting.html#bookdesign
– Ignasi
yesterday
Try with this one. It provides a template with all code and makes reference to original posts: liantze.penguinattack.org/latextypesetting.html#bookdesign
– Ignasi
yesterday
@Ignasi Thank you!
– Dũng Vũ
yesterday
@Ignasi Thank you!
– Dũng Vũ
yesterday
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
Here is an attempt. As for instance explained in this answer, by loading the titlesec
package with the explicit
key, you can make the title part of a tikzpicture
, which can of course be an overlay
.
documentclass{book}
usepackage{tikz}
usetikzlibrary{positioning}
usepackage[explicit]{titlesec}
usepackage{tikz}
titleformat{part}
{}
{}
{0em}
{begin{tikzpicture}[remember picture, overlay]
node[below right=4.8cm and 0cm of current page.north east] (a) {};
fill[bggray] (current page.north west) rectangle (a);
node[below right=1cm and 2cm of current page.north west,color=blue!90]
{hugebfseries Part thepart};
node[below right=2.5cm and 2cm of current page.north
west,color=blue]{fontsize{30pt}{30pt}selectfontscshape #1};
node[below left=1cm and 3cm of current page.north east] (pic1)
{includegraphics[width=3cm]{example-image-duck}};
end{tikzpicture}}
definecolor{bggray}{RGB}{215,215,215}
begin{document}
part{Introduction}
Some text
part{More stuff}
end{document}
(+1) Thank you very much! Though I don't like thepart{}
in its own page, but I can deal with it by myself. One last question: The ToC becameChapter 0: Contents
but I want to haveContents
only. How can I do? Also, it might be better if I can choose what picture I show on each part/chapter, but it is not really necessary.
– Dũng Vũ
yesterday
1
@DũngVũ Sorry for the later reply, I was hibernating. I do not get your result. Rather, when sayingtableofcontents
, I getContents I Introduction 3 II Morestuff 7
. Did you compile twice? (And aren't the empty pages just a property ofpart
in this class?
– marmot
yesterday
Ah, I'm sorry that I forgot one thing -- the fact is that I also set the same format forchapter
, so it is easy to understand why the output isChapter 0
.
– Dũng Vũ
yesterday
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
Here is an attempt. As for instance explained in this answer, by loading the titlesec
package with the explicit
key, you can make the title part of a tikzpicture
, which can of course be an overlay
.
documentclass{book}
usepackage{tikz}
usetikzlibrary{positioning}
usepackage[explicit]{titlesec}
usepackage{tikz}
titleformat{part}
{}
{}
{0em}
{begin{tikzpicture}[remember picture, overlay]
node[below right=4.8cm and 0cm of current page.north east] (a) {};
fill[bggray] (current page.north west) rectangle (a);
node[below right=1cm and 2cm of current page.north west,color=blue!90]
{hugebfseries Part thepart};
node[below right=2.5cm and 2cm of current page.north
west,color=blue]{fontsize{30pt}{30pt}selectfontscshape #1};
node[below left=1cm and 3cm of current page.north east] (pic1)
{includegraphics[width=3cm]{example-image-duck}};
end{tikzpicture}}
definecolor{bggray}{RGB}{215,215,215}
begin{document}
part{Introduction}
Some text
part{More stuff}
end{document}
(+1) Thank you very much! Though I don't like thepart{}
in its own page, but I can deal with it by myself. One last question: The ToC becameChapter 0: Contents
but I want to haveContents
only. How can I do? Also, it might be better if I can choose what picture I show on each part/chapter, but it is not really necessary.
– Dũng Vũ
yesterday
1
@DũngVũ Sorry for the later reply, I was hibernating. I do not get your result. Rather, when sayingtableofcontents
, I getContents I Introduction 3 II Morestuff 7
. Did you compile twice? (And aren't the empty pages just a property ofpart
in this class?
– marmot
yesterday
Ah, I'm sorry that I forgot one thing -- the fact is that I also set the same format forchapter
, so it is easy to understand why the output isChapter 0
.
– Dũng Vũ
yesterday
add a comment |
up vote
2
down vote
Here is an attempt. As for instance explained in this answer, by loading the titlesec
package with the explicit
key, you can make the title part of a tikzpicture
, which can of course be an overlay
.
documentclass{book}
usepackage{tikz}
usetikzlibrary{positioning}
usepackage[explicit]{titlesec}
usepackage{tikz}
titleformat{part}
{}
{}
{0em}
{begin{tikzpicture}[remember picture, overlay]
node[below right=4.8cm and 0cm of current page.north east] (a) {};
fill[bggray] (current page.north west) rectangle (a);
node[below right=1cm and 2cm of current page.north west,color=blue!90]
{hugebfseries Part thepart};
node[below right=2.5cm and 2cm of current page.north
west,color=blue]{fontsize{30pt}{30pt}selectfontscshape #1};
node[below left=1cm and 3cm of current page.north east] (pic1)
{includegraphics[width=3cm]{example-image-duck}};
end{tikzpicture}}
definecolor{bggray}{RGB}{215,215,215}
begin{document}
part{Introduction}
Some text
part{More stuff}
end{document}
(+1) Thank you very much! Though I don't like thepart{}
in its own page, but I can deal with it by myself. One last question: The ToC becameChapter 0: Contents
but I want to haveContents
only. How can I do? Also, it might be better if I can choose what picture I show on each part/chapter, but it is not really necessary.
– Dũng Vũ
yesterday
1
@DũngVũ Sorry for the later reply, I was hibernating. I do not get your result. Rather, when sayingtableofcontents
, I getContents I Introduction 3 II Morestuff 7
. Did you compile twice? (And aren't the empty pages just a property ofpart
in this class?
– marmot
yesterday
Ah, I'm sorry that I forgot one thing -- the fact is that I also set the same format forchapter
, so it is easy to understand why the output isChapter 0
.
– Dũng Vũ
yesterday
add a comment |
up vote
2
down vote
up vote
2
down vote
Here is an attempt. As for instance explained in this answer, by loading the titlesec
package with the explicit
key, you can make the title part of a tikzpicture
, which can of course be an overlay
.
documentclass{book}
usepackage{tikz}
usetikzlibrary{positioning}
usepackage[explicit]{titlesec}
usepackage{tikz}
titleformat{part}
{}
{}
{0em}
{begin{tikzpicture}[remember picture, overlay]
node[below right=4.8cm and 0cm of current page.north east] (a) {};
fill[bggray] (current page.north west) rectangle (a);
node[below right=1cm and 2cm of current page.north west,color=blue!90]
{hugebfseries Part thepart};
node[below right=2.5cm and 2cm of current page.north
west,color=blue]{fontsize{30pt}{30pt}selectfontscshape #1};
node[below left=1cm and 3cm of current page.north east] (pic1)
{includegraphics[width=3cm]{example-image-duck}};
end{tikzpicture}}
definecolor{bggray}{RGB}{215,215,215}
begin{document}
part{Introduction}
Some text
part{More stuff}
end{document}
Here is an attempt. As for instance explained in this answer, by loading the titlesec
package with the explicit
key, you can make the title part of a tikzpicture
, which can of course be an overlay
.
documentclass{book}
usepackage{tikz}
usetikzlibrary{positioning}
usepackage[explicit]{titlesec}
usepackage{tikz}
titleformat{part}
{}
{}
{0em}
{begin{tikzpicture}[remember picture, overlay]
node[below right=4.8cm and 0cm of current page.north east] (a) {};
fill[bggray] (current page.north west) rectangle (a);
node[below right=1cm and 2cm of current page.north west,color=blue!90]
{hugebfseries Part thepart};
node[below right=2.5cm and 2cm of current page.north
west,color=blue]{fontsize{30pt}{30pt}selectfontscshape #1};
node[below left=1cm and 3cm of current page.north east] (pic1)
{includegraphics[width=3cm]{example-image-duck}};
end{tikzpicture}}
definecolor{bggray}{RGB}{215,215,215}
begin{document}
part{Introduction}
Some text
part{More stuff}
end{document}
answered 2 days ago
marmot
76.9k487161
76.9k487161
(+1) Thank you very much! Though I don't like thepart{}
in its own page, but I can deal with it by myself. One last question: The ToC becameChapter 0: Contents
but I want to haveContents
only. How can I do? Also, it might be better if I can choose what picture I show on each part/chapter, but it is not really necessary.
– Dũng Vũ
yesterday
1
@DũngVũ Sorry for the later reply, I was hibernating. I do not get your result. Rather, when sayingtableofcontents
, I getContents I Introduction 3 II Morestuff 7
. Did you compile twice? (And aren't the empty pages just a property ofpart
in this class?
– marmot
yesterday
Ah, I'm sorry that I forgot one thing -- the fact is that I also set the same format forchapter
, so it is easy to understand why the output isChapter 0
.
– Dũng Vũ
yesterday
add a comment |
(+1) Thank you very much! Though I don't like thepart{}
in its own page, but I can deal with it by myself. One last question: The ToC becameChapter 0: Contents
but I want to haveContents
only. How can I do? Also, it might be better if I can choose what picture I show on each part/chapter, but it is not really necessary.
– Dũng Vũ
yesterday
1
@DũngVũ Sorry for the later reply, I was hibernating. I do not get your result. Rather, when sayingtableofcontents
, I getContents I Introduction 3 II Morestuff 7
. Did you compile twice? (And aren't the empty pages just a property ofpart
in this class?
– marmot
yesterday
Ah, I'm sorry that I forgot one thing -- the fact is that I also set the same format forchapter
, so it is easy to understand why the output isChapter 0
.
– Dũng Vũ
yesterday
(+1) Thank you very much! Though I don't like the
part{}
in its own page, but I can deal with it by myself. One last question: The ToC became Chapter 0: Contents
but I want to have Contents
only. How can I do? Also, it might be better if I can choose what picture I show on each part/chapter, but it is not really necessary.– Dũng Vũ
yesterday
(+1) Thank you very much! Though I don't like the
part{}
in its own page, but I can deal with it by myself. One last question: The ToC became Chapter 0: Contents
but I want to have Contents
only. How can I do? Also, it might be better if I can choose what picture I show on each part/chapter, but it is not really necessary.– Dũng Vũ
yesterday
1
1
@DũngVũ Sorry for the later reply, I was hibernating. I do not get your result. Rather, when saying
tableofcontents
, I get Contents I Introduction 3 II Morestuff 7
. Did you compile twice? (And aren't the empty pages just a property of part
in this class?– marmot
yesterday
@DũngVũ Sorry for the later reply, I was hibernating. I do not get your result. Rather, when saying
tableofcontents
, I get Contents I Introduction 3 II Morestuff 7
. Did you compile twice? (And aren't the empty pages just a property of part
in this class?– marmot
yesterday
Ah, I'm sorry that I forgot one thing -- the fact is that I also set the same format for
chapter
, so it is easy to understand why the output is Chapter 0
.– Dũng Vũ
yesterday
Ah, I'm sorry that I forgot one thing -- the fact is that I also set the same format for
chapter
, so it is easy to understand why the output is Chapter 0
.– Dũng Vũ
yesterday
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%2f460872%2fuse-remember-picture-overlay-tikz-picture-to-design-parts-chapters-toc-bib%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
@marmot I have edited my question using lists. Hope you understand the question better. Thank you very much for your feedback!
– Dũng Vũ
2 days ago
May be you are interested in this blog article series about a complete book design. It's based in
memoir
but will give you an idea about the process. See: latex-my.blogspot.com/search/label/bookdesign– Ignasi
yesterday
@Ignasi Sadly your link is not available for me. Google Chrome said
latex-my.blogspot.com’s server IP address could not be found.
:(– Dũng Vũ
yesterday
Try with this one. It provides a template with all code and makes reference to original posts: liantze.penguinattack.org/latextypesetting.html#bookdesign
– Ignasi
yesterday
@Ignasi Thank you!
– Dũng Vũ
yesterday