mersenneforum.org

mersenneforum.org (https://www.mersenneforum.org/index.php)
-   Information & Answers (https://www.mersenneforum.org/forumdisplay.php?f=38)
-   -   LaTeX Typesetting Question (https://www.mersenneforum.org/showthread.php?t=11884)

flouran 2009-07-06 16:39

Another question. I was looking at [URL="http://math.dartmouth.edu/~carlp/PDF/paper32.pdf"]one of Pomerance's papers[/URL], and I was wondering how Pomerance's notation for the pseudoprime counting function could be typeset in LaTeX?

Zeta-Flux 2009-07-06 17:51

flouran,

Sorry for forgetting about those help files. I tried attaching them, but they exceed the file size limit. Sorry.

As for your question: I've never seen that symbol before. I would probably use \mathcal{P}, which isn't nearly as fancy, but works. Or maybe \mathfrak{P}.

frmky 2009-07-06 18:12

[QUOTE=flouran;179939]Another question. I was looking at [URL="http://math.dartmouth.edu/~carlp/PDF/paper32.pdf"]one of Pomerance's papers[/URL], and I was wondering how Pomerance's notation for the pseudoprime counting function could be typeset in LaTeX?[/QUOTE]

Reasonable approximations are

\usepackage{mathrsfs}
$\mathscr{P}_b(x)$

or

\usepackage{eucal}
$\mathcal{P}_b(x)$

CRGreathouse 2009-07-06 18:57

1 Attachment(s)
[QUOTE=frmky;179946]\usepackage{mathrsfs}
$\mathscr{P}_b(x)$[/QUOTE]

Yeah, that's a pretty good approximation.

flouran 2009-08-01 00:35

Equation Numbering
 
All of my equations for all of my LaTeX documents are automatically labeled (for instance, the first equation is (1), the second equation is (2), etc.). But, I was wondering how I could prevent only one equation from not being labeled....

CRGreathouse 2009-08-01 00:40

[QUOTE=flouran;183608]All of my equations for all of my LaTeX documents are automatically labeled (for instance, the first equation is (1), the second equation is (2), etc.). But, I was wondering how I could prevent only one equation from not being labeled....[/QUOTE]

You can't prevent one from not being labeled because none of them are not labeled, by your description. But you can use \[ ... \] instead of \begin{equation} ... \end{equation} to stop one from being labeled.

flouran 2009-08-01 00:44

[quote=CRGreathouse;183609]You can't prevent one from not being labeled because none of them are not labeled, by your description. But you can use \[ ... \] instead of \begin{equation} ... \end{equation} to stop one from being labeled.[/quote]
Yep, that works! Thanks!

Zeta-Flux 2009-08-01 14:14

You can also use \begin{equation*} \end{equation*}. This works with split, eqnarray, etc... as well.

flouran 2009-08-01 15:01

Theorem, Conjecture, and Lemma numbering
 
Hi,
I was wondering, how do I keep the numbering for theorems, conjectures, and lemmas separate? Typically, when I have a conjecture (say it is the first conjecture, so it will be denoted by Conjecture 1), I use:
\begin{conj}
\end{conj}
Then, say I state a lemma right afterwards, using \begin{lemma} \end{lemma}, LaTeX denotes it as Lemma 2 rather than Lemma 1. And if I have a theorem right afterwards, using \begin{theorem} \end{theorem}, LaTeX denotes it as Theorem 3 rather than Theorem 1. So, how do I circumvent this and have the numbering of theorems, lemmas, and conjectures distinct within their own group?

Zeta-Flux 2009-08-02 03:12

You do that in the header, by defining different theorem types.

That said, I have to say that I have never liked it when papers do that. It is so much easier to find a result if everything is numbered sequentially. What is even worse is when Lemmas and Theorems have their own numbers, AND they depend on the section (or subsection). It gets convoluted.

Just have them go in increasing order.

There are certain exceptions to this rule:
1. If you have a list of questions/ conjectures at the end.
2. If you have a list of axioms in the middle.

I think the following is what you put in the header:

\newtheorem{thm}{Theorem}
\newtheorem{lemma}[thm]{Lemma}
\newtheorem{axiom}{Axiom}

This would have Theorem and Lemma numbered together, separate from Axiom.

flouran 2009-08-19 18:32

Remove Page Numbers?
 
How do I make it such that my output pdf does not have any page numbers?


All times are UTC. The time now is 22:41.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.