0

This is the code:

\documentclass{article}
\usepackage{bussproofs}
\usepackage[fontsize=32pt]{fontsize}
\begin{document}
\begin{prooftree}
\AxiomC{$a < b$}
\AxiomC{$b < c$}
\BinaryInfC{$ a < c $}
\end{prooftree}
\end{document}

I'm getting:

enter image description here

As you see, that the horizontal bar is thiner than the lines of the < and > symbols. The problem is that the weight of the bar is fixed, while the weight of the lines in the symbols depends on the font size. How can I change the thickness of the bar?

yegor256
  • 12,021

1 Answers1

1
  • Not an answer, a comment with pictures :).
  • The CTAN entry contains an example document.
  • When you zoom into the example document, then it looks different from your screenshot.
  • In my PDF viewer, the line width varies a lot depending on the zoom level.
  • Maybe this "discovery" helps.

enter image description here


I also tried \solidLine but with no visible effect on my end. enter image description here


Update

Chapter 5.3 Inference-line styles sound promising, or not?

enter image description here

Conclusion

In conclusion, the following part of the manual was crucial:

"The default setting of \ruleScoreFiller is {\hrule}, and in LATEX an unqualified \hrulecommand produces a horizontal line of thickness 0.4 pt. To change the rule’s thickness, use the command \def\ruleScoreFiller{\hrule height new-thickness}."