How can I make a title/label bold and large in LaTeX?
109 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Suganth Kannan
el 13 de Jul. de 2016
Respondida: Mariusz Matusiak
el 23 de Jul. de 2024
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.
0 comentarios
Respuesta aceptada
dpb
el 13 de Jul. de 2016
Editada: dpb
el 13 de Jul. de 2016
Only partial answer; I've never been able to figure out what does/doesn't work w/ the TMW TeX/LaTeX implementations but the documentation for text includes the wonderfully precise information of
There are two levels of TeX support, controlled by the text Interpreter property:
latex — Supports a basic subset of the LaTeX markup language.
tex — Supports a subset of plain TeX markup language.
Ok, but what subset? That appears to be only determinable by trial and error--see what works and what doesn't. :(
>> title('\bfSeries','interpreter','tex')
>> title('\textbf{text}','interpreter','latex')
work with the respective interpreters (TeX is default, btw, not LaTeX)
>> title('\textbf{text}','interpreter','latex','fontsize',24)
works but I couldn't get any of the named sizes for fontsize to work so have to conclude for some reason they're not part of the incorporated subset.
It's really frustrating, agreed, AFAICT it's just barely above "totally broke" for anybody with any facility at all with either.
1 comentario
Kent Leung
el 28 de Abr. de 2017
Following on from this response of not using supertitle. A way to change the font size using the latex interpreter in matlab is to do:
title('\fontsize{10}{10}\selectfont text','interpreter','latex')
Más respuestas (2)
J. Webster
el 13 de Jul. de 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)
0 comentarios
Mariusz Matusiak
el 23 de Jul. de 2024
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
0 comentarios
Ver también
Categorías
Más información sobre Title en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!