How can I make a title/label bold and large in LaTeX?
Show older comments
I am creating a 4x4 histogram plot matrix (16 subplots in a 4x4 arrangement) and inserting supertitle, superxlabel, and superylabel using the suplabel.m file in File Exchange. However, I tried all the possibilities (bf, textbf, bfseries, Large, Huge) as switches and commands but for some reason the commands title, xlabel, and ylabel are unwilling to make the text bold. Note: There is no math; hence, I use the following syntax:
'\textbf{\Huge text}' or
'\bfseries \Huge text'
For reference, I am using Matlab 2016a on a Unix System.
Accepted Answer
More Answers (2)
J. Webster
on 13 Jul 2016
I don't have superlabel installed, but you might try something like this...
[a,h]=suplabel('super Title' ,'t');
set(h,'FontWeight','bold');
To get a complete list of the Axis and figure properties that you can change, try
[a,h] = suplabel('super Title', 't');
get(a)
get(h)
Mariusz Matusiak
on 23 Jul 2024
0 votes
Hi!
You may find this answer also helpful: https://www.mathworks.com/matlabcentral/answers/251355-plot-title-set-font-size-with-latex-interpreter#answer_1489201
BR,
Mariusz
Categories
Find more on MATLAB Report Generator 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!