I am trying to create Optimality Theory tableaux (a specific type of tables used in linguistics). These tableaux generally look like the following - the important thing is that both the first column and the first row are "separated" from the rest of the table:
(note that in larger tables, the 2nd to nth columns and rows look like in any other table; that is, they are separated by a single line only)
MWE that works:
\documentclass{scrartcl}
%\usepackage{arydshln}
\usepackage{hhline}
%\usepackage{arydshln}
\begin{document}
\begin{tabular}{|r||c|}\hhline{|-||-|}
a & b\\\hhline{:=::=:}
c & d\\\hhline{|-||-|}
\end{tabular}
\end{document}
The problem is that I also require the ability to use a dashed vertical line in my tables instead of the regular |. The arydshln package provides this; it allows you to use : in your tabular spec to get a dashed line.
The problem is that even loading this package (before or after hhline) screws up the table -- the below is just with either of the commented lines in the MWE uncommented:
I have been able to find three references that have a samilar problem, in that their posters were attempting to use arydshln and hhline together:
Dashed hline in longtabu (arydshln conflicts, does not work?)
Conflict between \hline and arydshln in aligned environment?
But these problems were all solved by using a different approach, e.g. using TikZ to draw the "table". This is not an option for me; I really wish to use the tabular environment here. Is it in any way possible to have both dashed vertical lines (what I need arydshln for) and to be able to "separate" the first column and the first row from the rest of the table as in the first picture?



tikz. The very first one has an accepted answer which does something else entirely! The solutions in to the second question don't depend ontikzeither, even though the MWE is in the context of atikzpicture. The non-accepted answer in the third thread doesn't usetikz... – cfr Jul 19 '14 at 22:27! Undefined control sequence. \c@lor@to@ps
l.13 \end{OTtableau}
– user59366 Jul 20 '14 at 07:10\documentclass{article} \usepackage{pstricks} \begin{document} \psframe(0,0)(1,1) \end{document}I am definitely using xelatex though -- the log even says 'This is XeTeX, Version 3.1415926-2.6-0.9999.3 (TeX Live 2014/dev)' Though my vowel diagrams which I build using the pst-vowel package work fine, though with a warning that it couldn't interpret a ps@Dict command... – user59366 Jul 21 '14 at 07:59