Search found 707 matches
- Thu Feb 01, 2024 5:47 pm
- Forum: Page Layout
- Topic: Crop marks
- Replies: 2
- Views: 4044
Crop marks
This is happening because your printing paper size and your logical paper size are the same, so the crop marks are cut off. The way to fix it is to set up the paper options as though you were not putting crop marks in place using geometry, then specify a larger printing paper size using crop. For ...
- Sat Sep 30, 2023 3:24 am
- Forum: General
- Topic: What difference is there between caption and title in lstlisting in latex?
- Replies: 1
- Views: 9335
What difference is there between caption and title in lstlisting in latex?
According to the documentation (which you should read!), the "title" field is the entire title of the code sample without a number. The caption is the same thing, except it says "Listing 1: [caption contents]" or similar for second, third, etc. listings. If you specify both, whichever is specified ...
- Fri Sep 29, 2023 3:04 pm
- Forum: Graphics, Figures & Tables
- Topic: problem continuing a table
- Replies: 1
- Views: 6940
problem continuing a table
You probably want to have a look at either the
supertabular or
longtable packages. These provide tabular-like environments that split across pages, if necessary, including repetition of running headers and footers such as "continued on next page."


- Sat Sep 23, 2023 5:00 pm
- Forum: Math & Science
- Topic: Tall brace in multi line math expression.
- Replies: 3
- Views: 11177
Tall brace in multi line math expression.
Something like
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\left.
\begin{aligned}
1 + \cfrac{1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+ \dotsb
}}}}}
\end{aligned}
\right\} = xyz
\end{equation}
\end{document}
should do it. The "aligned ...
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\left.
\begin{aligned}
1 + \cfrac{1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+ \dotsb
}}}}}
\end{aligned}
\right\} = xyz
\end{equation}
\end{document}
should do it. The "aligned ...
- Mon Sep 18, 2023 2:47 am
- Forum: Math & Science
- Topic: package issue
- Replies: 5
- Views: 10179
package issue
The package you meant is "amsmath" not "asmmath" (AMS = American Mathematical Society). There is also the bbm package to get "blackboard bold" characters.
can you also give the command to put a double-strike R (ℝ) like i showed in the main post?
It's right there on the first page of the link to ...
can you also give the command to put a double-strike R (ℝ) like i showed in the main post?
It's right there on the first page of the link to ...
- Mon Sep 18, 2023 1:27 am
- Forum: Math & Science
- Topic: package issue
- Replies: 5
- Views: 10179
package issue
The package you meant is "amsmath" not "asmmath" (AMS = American Mathematical Society). There is also the
bbm package to get "blackboard bold" characters.

- Mon Sep 04, 2023 4:35 pm
- Forum: General
- Topic: References for APA
- Replies: 1
- Views: 6134
References for APA
Did you use the apacite bibliography style? (i.e.,
If you did and it's still not working, please post a
minimal working example.
\bibliographystyle{apacite}
)If you did and it's still not working, please post a

- Mon Sep 04, 2023 6:33 am
- Forum: Graphics, Figures & Tables
- Topic: Avoid vertical and hrizontal intersect in a table
- Replies: 1
- Views: 6071
Avoid vertical and hrizontal intersect in a table
I'm not sure why you would want it this way, but...the
booktabs
package actually does this as an unintended side-effect.- Thu Aug 31, 2023 8:17 pm
- Forum: LaTeX Beginner's Guide
- Topic: Some quick notation questions about newcommand
- Replies: 3
- Views: 115253
Some quick notation questions about newcommand
Here's a reason for the percent sign (i.e., a comment, which has the effect of eating the spaces until the next line); compare the following:
\documentclass{article}
\newcommand*{\hello}{
Hello, world!}
\newcommand*{\goodbye}{%
Goodbye, world!}
\begin{document}
\noindent
This is the \hello ...
\documentclass{article}
\newcommand*{\hello}{
Hello, world!}
\newcommand*{\goodbye}{%
Goodbye, world!}
\begin{document}
\noindent
This is the \hello ...
- Thu Aug 31, 2023 3:16 pm
- Forum: Text Formatting
- Topic: How can I choose where the chemical reaction splits into the second line?
- Replies: 1
- Views: 14565
How can I choose where the chemical reaction splits into the second line?
I would use the
To break the first equation across a line, use the
gather
environment rather than align
for this application.To break the first equation across a line, use the
split
environment.