I'm using Python Sphinx to generate my manuals which contains a variety of different tables. In some case I need to adjust a table, so that it doesn't show the frame any longer. Python Sphinx outputs are tabulary environments from the package tabulary.
So I tried by omitting the | in the environment:
\begin{tabulary}{ccc}
...
\end{tabulary}
Still there are lines at the top, at the bottom and eventually in between. What I'm missing here?
\documentclasscommand, have a minimal preamble and then\begin{document}...\end{document}. The code should compile and be as small as possible to demonstrate your problem. It is really difficult to help you without more information. This said, you probably just need to remove some\hlinecommands from the table. – Dec 07 '17 at 10:24\hline, that I have to remove. The problem is not so much a TeX problem as I thought beforehand. I have to configure Sphinx I a way, such that either the generation of\hlineis suppressed or I need to redefine\hlineso such it will not draw a line any longer. – Aleph0 Dec 07 '17 at 11:19\hlinethroughout your document then, for the latter, just add\let\hline\relaxto your preamble. You can automate this using the--latex-preamble=...option torst2latex.py– Dec 07 '17 at 12:09\begingroup\setlength{\arrayrulewidth}{0pt} [TABLE] \endgroupseems to be a clumsy, but workable approach. I only need to temporarily deactivate the frames. – Aleph0 Dec 07 '17 at 12:18