We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dcbead commit 90df8c8Copy full SHA for 90df8c8
src/format/pdf/format-pdf.ts
@@ -83,7 +83,18 @@ export function latexFormat(displayName: string): Format {
83
return createFormat(
84
displayName,
85
"tex",
86
- createPdfFormat(displayName),
+ mergeConfigs(
87
+ createPdfFormat(displayName),
88
+ {
89
+ extensions: {
90
+ book: {
91
+ formatOutputDirectory: () => {
92
+ return "book-latex";
93
+ },
94
95
96
97
+ ),
98
);
99
}
100
@@ -265,7 +276,7 @@ function createPdfFormat(
265
276
266
277
267
278
const pdfBookExtension: BookExtension = {
268
- formatOutputDirectory: () => {
279
269
280
return "book-pdf";
270
281
},
271
282
0 commit comments