1.3.3.6. Latex DirectivesΒΆ

  • For making a page break for pdf generation

    .. raw:: latex
    
        \newpage
    
  • To shrink text for PDF build that Landscape mode doesnt help with:

    • To start text shrink:

      .. raw:: latex
      
          \begin{scriptsize}
      
    • To stop text shrink:

      .. raw:: latex
      
          \end{scriptsize}
      
  • Custom latex roles

    • In order to rotate pages for PDF output, you must tell it where to begin the rotation AND where to end it.

      • To start the rotation, use the following

        .. raw:: latex
        
            \begin{landscape}
        
      • To end the rotation (yes you MUST do this otherwise the PDF build will FAIL):

        .. raw:: latex
        
            \end{landscape}