You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to place a page publications from thesis at the end of my quarto book. I also may need to add other pages. I want it to be excluded from table of contents page.
My minimal qmd document looks like this
project:
type: book
book:
title: "Consumer Sentiments"
author:
- name: "Nithin M"
affiliations:
- name: "Indian Institute of Technology Kharagpur"
department: "Department of Humanities and Social Sciences"
chapters:
- index.qmd
- intro.qmd
- "Chapter1/chapter_main.qmd"
- summary.qmd
- publications.qmd
appendices:
- app1.qmd
- app2.qmd
date: "01 June 2026"
date-format: "MMMM YYYY"
bibliography: references.bib
format:
pdf:
documentclass: scrbook
toc: true
toc-title: Contents
what i am expecting is something like this
project:
type: book
book:
title: "Consumer Sentiments"
author:
- name: "Nithin M"
affiliations:
- name: "Indian Institute of Technology Kharagpur"
department: "Department of Humanities and Social Sciences"
chapters:
- index.qmd
- intro.qmd
- "Chapter1/chapter_main.qmd"
- summary.qmd
appendices:
- app1.qmd
- app2.qmd
chapters:
- publications.qmd
date: "01 June 2026"
date-format: "MMMM YYYY"
bibliography: references.bib
format:
pdf:
documentclass: scrbook
toc: true
toc-title: Contents
I mean the location of chapter if possible should be customization.
Also I already tried pasting it at the end of app2.qmd. The issue is the items in publications.qmd (enumerate items) gets numbering from appendix
my publications.qmd
```{=latex}
\addtocontents{toc}{\protect\setcounter{tocdepth}{-1}}
%\makeatletter\@openrightfalse
```
# Publications from this Thesis {.unnumbered .unlisted}
## Journal {.unlisted}
1. **Nithin,M ** and A. Right, ``Somehow this got published," in \emph{Bullshit Journal of the universe}, 20xx, DOI: 978NNJHUH7683.
## Conferences {.unlisted}
1. item 1
2. item 2
3. item 3
## Submitted Papers {.unlisted}
1. paper 1
2. paper 2
3. paper 3
```{=latex}
\addtocontents{toc}{\protect\setcounter{tocdepth}{3}}
```
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Description
I need to place a page publications from thesis at the end of my quarto book. I also may need to add other pages. I want it to be excluded from table of contents page.
My minimal qmd document looks like this
what i am expecting is something like this
I mean the location of chapter if possible should be customization.
Also I already tried pasting it at the end of app2.qmd. The issue is the items in publications.qmd (enumerate items) gets numbering from appendix
my publications.qmd
Beta Was this translation helpful? Give feedback.
All reactions