-
Hi, I've put together my first book project and I want to render it to both project:
type: book
book:
title: "my_book"
author:
- Me
Affiliations:
- Work
date: "10/08/2022"
chapters:
- index.qmd
- part: "Model Details"
chapters:
- intro.qmd
- c2.qmd
- c3.qmd
- c4.qmd
- c5.qmd
- c6.qmd
- part: "Examples"
chapters:
- example_problem.qmd
- Example1_results.qmd
- references.qmd
appendices:
- A1.qmd
- A2.qmd
- A3.qmd
- A4.qmd
page-navigation: true
page-footer:
center: "Copyright 2021, Norah Jones"
left:
- icon: github
href: https://github.com/
right:
- icon: twitter
href: https://twitter.com/
downloads: [pdf]
bibliography: references.bib
csl: elsevier-with-titles-alphabetical.csl
format:
html:
theme: cosmo
pdf:
documentclass: book
lof: true
lot: true
toc: true
geometry:
- top=30mm
- left=20mm
- heightrounded
hyperrefoptions:
- linktoc=all
colorlinks: true
linkcolor: "blue"
biblio-style: apalike
keep-tex: true
latex-auto-install: true I'm using running xelatex - 1
This is XeTeX, Version 3.141592653-2.6-0.999994 (MiKTeX 22.7.30) (preloaded format=xelatex.fmt)
restricted \write18 enabled.
entering extended mode
compilation failed- missing packages (automatic installed disabled)
Extra alignment tab has been changed to \cr.
<recently read> \endtemplate
l.454 ... & \cdot & -k_1 & \cdot & \cdot & \cdot &
\cdot & \cdot \\
see D:\Workspace\quarto\my_book\index.log for more information. The last few entries in the
Which isn't too helpful, but it seems to fail on the following equation: \begin{equation}\protect\hypertarget{eq-StiffnessMatrix}{}{
\left[ K \right] =
\begin{bmatrix}
k_1 & \cdot & \cdot & \cdot & \cdot & \cdot & -k_1 & \cdot & \cdot & \cdot & \cdot & \cdot \\
\cdot & k_2 & \cdot & \cdot & \cdot & k_3 & \cdot & -k_2 & \cdot & \cdot & \cdot & k_3 \\
\cdot & \cdot & k_2 & \cdot & -k_3 & \cdot & \cdot & \cdot & -k_2 & \cdot & -k_3 & \cdot \\
\cdot & \cdot & \cdot & k_4 & \cdot & \cdot & \cdot & \cdot & \cdot & -k_4 & \cdot & \cdot \\
\cdot & \cdot & -k_3 & \cdot & k_5 & \cdot & \cdot & \cdot & k_3 & \cdot & k_6 & \cdot \\
\cdot & k_3 & \cdot & \cdot & \cdot & k_5 & \cdot & -k_3 & \cdot & \cdot & \cdot & k_6 \\
-k_1 & \cdot & \cdot & \cdot & \cdot & \cdot & k_1 & \cdot & \cdot & \cdot & \cdot & \cdot \\
\cdot & -k_2 & \cdot & \cdot & \cdot & k_3 & \cdot & k_2 & \cdot & \cdot & \cdot & -k_3 \\
\cdot & \cdot & -k_2 & \cdot & k_3 & \cdot & \cdot & \cdot & k_2 & \cdot & k_3 & \cdot \\
\cdot & \cdot & \cdot & -k_4 & \cdot & \cdot & \cdot & \cdot & \cdot & k_4 & \cdot & \cdot \\
\cdot & \cdot & -k_3 & \cdot & k_6 & \cdot & \cdot & \cdot & k_3 & \cdot & k_5 & \cdot \\
\cdot & k_3 & \cdot & \cdot & \cdot & k_6 & \cdot & -k_3 & \cdot & \cdot & \cdot & k_5
\end{bmatrix}
}\label{eq-StiffnessMatrix}\end{equation}
Not quite sure why it's failing here for the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
We need to see the actual qmd files to give a better answer. Is that equation typed in LaTeX in your |
Beta Was this translation helpful? Give feedback.
-
There is a limit on the number of columns (which is 10 by default) in a matrix. Need to send a command to change the default number of columns allowed in a matrix to enable it to compile. See
|
Beta Was this translation helpful? Give feedback.
There is a limit on the number of columns (which is 10 by default) in a matrix. Need to send a command to change the default number of columns allowed in a matrix to enable it to compile. See
amsmath
package documentation.