Publishing pdf, pb with line lenght
1 view (last 30 days)
Show older comments
Hello,
I have a problem when i publish on pdf format. Sometims my line code is too big and on a pdf i don't see all the line.
For example : on matlab i have
VO2_Dyn_for_C=Value_C(eW_ore)*Coeff_C(eW_ore)+Value_C(ePCO_estimate)*Coeff_C(ePCO_estimate)
On the pdf i have
VO2_Dyn_for_C=Value_C(eW_ore)*Coeff_C(eW_ore)+Value_C(ePCO_estima
It is possible for matlab to display one line code to severals lines on the pdf for see all the code ???
Thank you for your help !
0 Comments
Accepted Answer
Fangjun Jiang
on 27 Jul 2011
One way to consider is to use the ... symbol to put your code in multiple lines. M-editor has a right-hand text limit, which is 75 characters by default and it has a line to indicate it.
VO2_Dyn_for_C=Value_C(eW_ore)*Coeff_C(eW_ore) ... +Value_C(ePCO_estimate)*Coeff_C(ePCO_estimate)
0 Comments
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!