equal
deleted
inserted
replaced
456 \lstinputlisting[lastline=20]{lstexample.py} |
456 \lstinputlisting[lastline=20]{lstexample.py} |
457 |
457 |
458 This command includes the first 20 lines of the file ``lstexample.py`` into out LaTeX document. |
458 This command includes the first 20 lines of the file ``lstexample.py`` into out LaTeX document. |
459 |
459 |
460 Tables, Figures, Floats, & Referencing |
460 Tables, Figures, Floats, & Referencing |
461 --------------------------------------------- |
461 -------------------------------------- |
462 |
462 |
463 Tables |
463 Tables |
464 ~~~~~~ |
464 ~~~~~~ |
465 |
465 |
466 The ``tabular`` environment allows typesetting tables in LaTeX. Like any other environment it starts with ``\begin`` command and ends with ``\end``. |
466 The ``tabular`` environment allows typesetting tables in LaTeX. Like any other environment it starts with ``\begin`` command and ends with ``\end``. |
536 |
536 |
537 :: |
537 :: |
538 |
538 |
539 \includegraphics[scale=0.8, angle=30]{lion_orig.png} |
539 \includegraphics[scale=0.8, angle=30]{lion_orig.png} |
540 |
540 |
|
541 |
541 Floats |
542 Floats |
542 ~~~~~~ |
543 ~~~~~~ |
543 |
544 |
544 Tables and Figures need to be treated in a special manner, since they cannot be split over pages, and they are referred to as floats in LaTeX. |
545 Tables and Figures need to be treated in a special manner, since they cannot be split over pages, and they are referred to as floats in LaTeX. |
545 |
546 |