How can I make a title/label bold and large in LaTeX?
Mostra commenti meno recenti
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.
Risposta accettata
Più risposte (2)
J. Webster
il 13 Lug 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
il 23 Lug 2024
0 voti
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
Categorie
Scopri di più su MATLAB Report Generator in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!