Skip to content

Commit 76d5f2b

Browse files
authored
Merge pull request #64 from msdemlei/tablefix
CSS override to fix table rendering in sect 7.
2 parents 033254d + e74ed2d commit 76d5f2b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ AUTHOR_EMAIL=???
2121
SOURCES = $(DOCNAME).tex role_diagram.pdf \
2222
VOTable.attr.tex VOTable.elem.tex \
2323
VOTable.xsd stc_example1.vot stc_example2.vot timesys_example.vot \
24-
binary.pdf binary2.pdf
24+
binary.pdf binary2.pdf \
25+
tablefix.css
2526

2627
# List of image files to be included in submitted package (anything that
2728
# can be rendered directly by common web browsers)

VOTable.tex

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
\documentclass[11pt,a4paper]{ivoa}
22
\input tthdefs
33

4+
\customcss{tablefix.css}
45
\usepackage{verbatim}
56

67
\let\A=\href
@@ -2576,7 +2577,7 @@ \subsection{FIELDs as Data Pointers}
25762577
<FIELD name="Spectrum" ucd="meta.ref.url" datatype="float" arraysize="*"
25772578
unit="mW/m2/nm" type="location">
25782579
<DESCRIPTION>Spectrum absolutely calibrated</DESCRIPTION>
2579-
<LINK content-role="location"
2580+
<LINK content-role="location"
25802581
href="http://ivoa.spectr/server?obsno="/>
25812582
</FIELD>
25822583
<DATA><TABLEDATA>

tablefix.css

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
table.tabular > * > tr > td, table.tabular > tr > td {
2+
border-top: none !important;
3+
border-bottom: none !important;
4+
}

0 commit comments

Comments
 (0)