Use (remember picture, overlay) TikZ picture to design parts, chapters, ToC, Bibliography, Index











up vote
1
down vote

favorite
1












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:



enter image description here



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:





  1. 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{} and chapter{} 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.





  2. 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



    enter image description here



    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?










share|improve this question
























  • @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















up vote
1
down vote

favorite
1












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:



enter image description here



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:





  1. 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{} and chapter{} 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.





  2. 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



    enter image description here



    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?










share|improve this question
























  • @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













up vote
1
down vote

favorite
1









up vote
1
down vote

favorite
1






1





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:



enter image description here



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:





  1. 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{} and chapter{} 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.





  2. 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



    enter image description here



    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?










share|improve this question















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:



enter image description here



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:





  1. 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{} and chapter{} 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.





  2. 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



    enter image description here



    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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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


















  • @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
















@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










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}





share|improve this answer





















  • (+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




    @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











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',
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
});


}
});














 

draft saved


draft discarded


















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

























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}





share|improve this answer





















  • (+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




    @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















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}





share|improve this answer





















  • (+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




    @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













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}





share|improve this answer












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}






share|improve this answer












share|improve this answer



share|improve this answer










answered 2 days ago









marmot

76.9k487161




76.9k487161












  • (+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




    @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


















  • (+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




    @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
















(+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


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














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





















































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







Popular posts from this blog

サソリ

広島県道265号伴広島線

Accessing regular linux commands in Huawei's Dopra Linux