Search found 640 matches

by Ijon Tichy
Fri Mar 04, 2022 6:47 pm
Forum: General
Topic: Getting an environment parameter outside the environment
Replies: 1
Views: 1698

Getting an environment parameter outside the environment

You can use \gdef to define a macro globally inside the environment. But note: In case of nested usage of the environment, the last \gdef will be the valid one independent of the nest level.
by Ijon Tichy
Tue Mar 01, 2022 4:47 pm
Forum: General
Topic: Lorem ipsum
Replies: 2
Views: 2422

Lorem ipsum

There are several so called blind text packages on CTAN.

For the origin of lorem ipsum and a possible English translations see also Wikipedia.
by Ijon Tichy
Mon Feb 28, 2022 9:41 am
Forum: Texmaker and TeXstudio
Topic: PDF file does not update
Replies: 4
Views: 59859

PDF file does not update

Have you seen, that there are error messages for your example?
The first one:

Runaway argument?
{ \begin {center}
! Paragraph ended before \@textcolor was complete.
<to be read again>
\par
l.20 ^^I^^I

?

is because you are using paragraphs like empty lines inside \textcolor . \textcolor ...
by Ijon Tichy
Sun Feb 27, 2022 2:22 pm
Forum: Fonts & Character Sets
Topic: help with letters formatting
Replies: 2
Views: 2836

help with letters formatting

Please read an introduction to LaTeX.

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\mathcal{A} = (M,N,A,\pi_c,\pi_d,V_{\text{min}},V_{\text{max}},V_0)
\]

And because \verb|\max| and \verb|\min| are known operators, following does also work (but is not absolutely correct ...
by Ijon Tichy
Fri Feb 25, 2022 12:36 pm
Forum: Page Layout
Topic: Sloppypar and Fancyhdr - No header on last page
Replies: 4
Views: 6501

Sloppypar and Fancyhdr - No header on last page

\sloppy ends within the group in which it is used. So if you do use it inside \begin{document}…\end{document} but not inside an additional environment or group, it does not really end before termination of TeX, because document is an environment, that does not start and end a group.
by Ijon Tichy
Thu Feb 24, 2022 6:15 pm
Forum: Graphics, Figures & Tables
Topic: Move table text from under to over table
Replies: 1
Views: 2480

Move table text from under to over table

If you want the table caption above the tabular you should move \caption above the tabular . And please note: The \label should always be behind the \caption , because usually the \caption increases the table counter and set it as new reference. So a \label before \caption usually references ...
by Ijon Tichy
Thu Feb 24, 2022 6:09 pm
Forum: Graphics, Figures & Tables
Topic: Weird lines around figures
Replies: 2
Views: 3458

Weird lines around figures

Without a correct as code marked Infominimal working example I can only suggest to remove all the |\\ from your code.
by Ijon Tichy
Thu Feb 24, 2022 10:47 am
Forum: BibTeX, biblatex and biber
Topic: Bibliography
Replies: 5
Views: 3698

Bibliography

Unfortunately this in not a , because essential files like citation2.bib are missing. The code is also not marked correctly as code. All other information I explicitly asked for is also still missing. I've now tried two times to get all relevant information. Sorry, but I unsubscribe this topic now ...
by Ijon Tichy
Thu Feb 24, 2022 10:42 am
Forum: Page Layout
Topic: Sloppypar and Fancyhdr - No header on last page
Replies: 4
Views: 6501

Sloppypar and Fancyhdr - No header on last page

You've changed things relevant for fancyhdr inside a group (almost every environments are groups). All (or at least most) of these changes are local to the group. You've closed the group before ending the last page. So the changes are not longer valid, when the last page is output.

BTW: sloppypar ...
by Ijon Tichy
Thu Feb 24, 2022 10:32 am
Forum: Graphics, Figures & Tables
Topic: How to gather your tables under "List of tables"?
Replies: 1
Views: 1262

How to gather your tables under "List of tables"?

You question is completely unclear. You are asking for how to add tables to the list of tables and also tell us, that the table is in the list of tables. Can you please show a Infominimal working example? Currently I neither do known, what you are asking, nor how to help. We need much more information.