Latex counter between chapters #4799
-
Hi all I'm wondering if it's possible to create in Quarto fro PDF-Output (Latex) something similar like: ` \include{chapter/ohmKirchhoff} Any hints? kind regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
One approach I think of is the use an include at the start of each chapter, like: {{< include colorize-chapter.qmd >}}
# Introduction
This is a book created from markdown and executable code.
See @knuth84 for additional discussion of literate programming. which points to a file containing a raw latex block, like: ```{=latex}
\stepcounter{chapshift}
``` Would that work? |
Beta Was this translation helpful? Give feedback.
One approach I think of is the use an include at the start of each chapter, like:
which points to a file containing a raw latex block, like:
Would that work?