|
17 | 17 |
|
18 | 18 |
|
19 | 19 | # register hal lexer |
20 | | -lexers['hal'] = HALLexer() |
| 20 | +lexers["hal"] = HALLexer() |
21 | 21 |
|
22 | 22 |
|
23 | 23 | # -- Project information ----------------------------------------------------- |
24 | 24 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information |
25 | 25 |
|
26 | | -project = "Robot Grúa del CITIC" |
27 | | -copyright = "2025, GTEC" |
28 | | -author = "GTEC" |
| 26 | +project = "LinuxCNC Motor Control Testbed" |
| 27 | +author = "Tomás Domínguez Bolaño, Valentín Barral Vales, Carlos José Escudero Cascón, and José Antonio García Naya (CITIC Research Center, University of A Coruña, Spain)" |
| 28 | +copyright = "2025, Group of Electronic Technology and Communications of the University of A Coruña (UDC)" |
29 | 29 |
|
30 | 30 |
|
31 | 31 | # -- General configuration --------------------------------------------------- |
|
35 | 35 | "sphinxcontrib.bibtex", # https://github.com/mcmtroffaes/sphinxcontrib-bibtex |
36 | 36 | "sphinx_copybutton", # https://github.com/executablebooks/sphinx-copybutton |
37 | 37 | "extimage", # Provides ext-image and ext-figure directives |
38 | | - 'myst_parser', # https://myst-parser.readthedocs.io/en/latest/ |
| 38 | + "myst_parser", # https://myst-parser.readthedocs.io/en/latest/ |
39 | 39 | ] |
40 | 40 |
|
41 | 41 | bibtex_bibfiles = ["bib/references.bib"] |
|
56 | 56 | "substitution", |
57 | 57 | ] |
58 | 58 |
|
59 | | -myst_substitutions = { |
60 | | - "project": project |
61 | | -} |
| 59 | +myst_substitutions = {"project": project} |
62 | 60 |
|
63 | 61 | numfig = True |
64 | 62 | numfig_secnum_depth = 0 |
65 | 63 | math_numfig = True |
66 | 64 | highlight_language = "none" |
67 | 65 |
|
68 | 66 | numfig_format = { |
69 | | - 'code-block': 'Código %s', |
| 67 | + "code-block": "Código %s", |
70 | 68 | # 'figure': 'Figura %s', |
71 | 69 | # 'section': 'Sección', |
72 | 70 | # 'table': 'Tabla %s', |
|
118 | 116 |
|
119 | 117 | html_theme = "furo" |
120 | 118 |
|
121 | | -html_title = "Documentación del " + project |
| 119 | +html_title = project |
122 | 120 |
|
123 | 121 | html_theme_options = { |
124 | 122 | # furo theme options |
|
140 | 138 | "css/custom.css", |
141 | 139 | # "css/furo_custom.css", |
142 | 140 | # "css/sphynx_copybutton.css", |
143 | | - "css/tables.css" |
| 141 | + "css/tables.css", |
144 | 142 | ] |
145 | 143 |
|
146 | 144 | html_logo = "images/logos/logo_udc_gtec_citic.svg" |
|
158 | 156 |
|
159 | 157 | latex_logo = "images/logos/logo_udc_gtec_citic.pdf" |
160 | 158 |
|
| 159 | +latex_documents = [ |
| 160 | + ( |
| 161 | + "index", |
| 162 | + "linuxcncmotorcontroltestbed.tex", |
| 163 | + project, |
| 164 | + "Tomás Domínguez Bolaño \\and Valentín Barral Vales \\and Carlos José Escudero Cascón \\and José Antonio García Naya", |
| 165 | + "manual", |
| 166 | + ) |
| 167 | +] |
161 | 168 |
|
162 | 169 | # Additional documents to include |
163 | 170 | latex_additional_files = [ |
|
213 | 220 | """ |
214 | 221 | ), |
215 | 222 | "pointsize": "11pt", |
216 | | - "preamble": r"\input{preamble.sty}", |
| 223 | + "preamble": r"\input{preamble.sty}" |
| 224 | + + "\n" |
| 225 | + + r"\authoraddress{CITIC Research Center, University of A Coruña, Spain}", |
217 | 226 | "sphinxsetup": textwrap.dedent( |
218 | 227 | r""" |
219 | 228 | hmargin=115pt, |
|
0 commit comments