LaTeX matrix when publishing

54 views (last 30 days)
Rick
Rick on 9 Sep 2015
Commented: Pedro Pedrosa on 10 May 2019
Hello,
I'm trying to publish some latex, and for some reason it is not accepting my matrix. I have tested on another site and it seems to work, but I am wondering if the syntax for matlab latex is different from other places
% $$ \vec {x} = \begin {bmatrix} T-T_{s} \\ C_{A} - C_{As} \\ C_{P} - C_{Ps} \end
% {bmatrix} $$
Is not making a matrix for me. What is wrong?
This is the output on the published file
Error updating Text.
String must have valid interpreter syntax:
$$ \vec {x} = \begin {bmatrix} T-T_{s} \\ C_{A} - C_{As} \\ C_{P} - C_{Ps} \end {bmatrix}

Answers (1)

Walter Roberson
Walter Roberson on 10 Sep 2015
bmatrix is part of amsmath but you cannot (at all easily) load the ams* packages.
  5 Comments
Walter Roberson
Walter Roberson on 19 Sep 2015
pmatrix is part of the mathtools package, but bmatrix is part of the amsmath package.
Pedro Pedrosa
Pedro Pedrosa on 10 May 2019
If you want square braces use \matrix{} enclosed with \left[ \right].

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!