how to add title/caption to FormalTable ?
23 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
SRUSHTI KHATAU
am 20 Nov. 2021
Bearbeitet: Randolph Leiser
am 17 Dez. 2024
I want to add caption/title to the table. I am making tables using FormalTable but could not find the property to add caption to it. Please help
0 Kommentare
Akzeptierte Antwort
Srijith Kasaragod
am 23 Nov. 2021
4 Kommentare
Randolph Leiser
am 16 Dez. 2024
Bearbeitet: Randolph Leiser
am 17 Dez. 2024
This answer works if you want to do minimal formatting, but BaseTable seems to overwrite or not fully interpret the settings of a Table or FormalTable. For example if we change the style lines of your table creation to:
t.TableEntriesStyle = { ColSep("none"), ...
RowSep("none"), ...
Border("none"), ...
Width("1in")};
then executing the code yields a table with only the bottom and right border removed.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1821182/image.png)
Similarly, trying dashed
t.TableEntriesStyle = { ColSep("dashed"), ...
RowSep("dashed"), ...
Border("dashed"), ...
Width("1in")};
gives this table
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1821183/image.png)
I am not sure if there is a way to maintain the formatting of the original table better, as BaseTable does not have Border properties than can be modified.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!