Page LayoutHow to set tag style?

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
azertyazerty
Posts: 7
Joined: Fri Nov 26, 2010 8:30 pm

How to set tag style?

Post by azertyazerty »

Hi,

I'm having some problems with the tags which appear using equations and eqnarrays. When i'm working in a section, the tags will be in #.#-style. I would like to have them in just one number-style (#). Any ideas?

Code: Select all

\section{Oefening 1.8}

De tralie $\mathcal{L}^I = (\mathcal{L}^I, \sqcap, \sqcup)$ wordt gedefinieerd door
\begin{eqnarray*}
\mathcal{L}^I &=& \{[x_1,x_2] \mid (x_1,x_2) \in [0,1]^2\,\textrm{en}\,x_1 \leq x_2\}\\
{[}x_1,x_2] \sqcap [y_1,y_2] &=& [\min(x_1,y_1),\min(x_2,y_2)]\\
{[}x_1,x_2] \sqcup [y_1,y_2] &=& [\max(x_1,y_1),\max(x_2,y_2)]
\end{eqnarray*}
De componentgewijze uitbreiding van $\leq$ wordt gegeven door
\begin{equation*}
[x_1,x_2] \leq_{L_I} [y_1,y_2] \Longleftrightarrow x_1 \leq y_1 \,\textrm{en}\, x_2 \leq y_2.
\end{equation*}
Men heeft aangetoond dat er geen {MTL}-algebra bestaat voor de tralie $\mathcal{L}^I = (\mathcal{L}^I, \sqcap, \sqcup)$, gedefinieerd in de vorige definitie en wiens parti\"ele ordening $\leq_{L_I}$ gegeven wordt door de componentsgewijze uitbreiding van $\leq$.
\\
\\
Het testsysteem leest
\begin{equation}
\begin{bmatrix}
	y_1^" \\ y_2^" \\ y_3^"
\end{bmatrix} =
\begin{bmatrix}
	3-2x-E & -x & 1+x \\ -x & -1-2x-E & 1-x \\ 1+x & 1-x & 1-2x - E
\end{bmatrix}
\begin{bmatrix}
	y_1 \\ y_2 \\ y_3
\end{bmatrix}.
\end{equation}
De exacte oplossing is
\begin{equation*}
y_1(x) = (1+x)e^x,\;\;\;y_2(x) = (1-x)e^x,\;\;\;y_3 = xe^x.
\end{equation*}
\begin{equation}
\Delta \tilde{y}_i(10) = \left| \frac{\tilde{y}_i(10) - y_i(10)}{y_i(10)} \right|
\end{equation}
Last edited by azertyazerty on Mon Dec 20, 2010 4:11 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Montag
Posts: 340
Joined: Wed Jul 15, 2009 9:25 am

How to set tag style?

Post by Montag »

Via
http://www.google.de/search?num=100&q=l ... er+chapter
or
http://www.google.de/search?num=100&q=l ... er+section
=> first hit:
http://www.tex.ac.uk/cgi-bin/texfaq2htm ... unning-nos gives you:

Code: Select all

\counterwithout{figure}{chapter}
, which should work for you with

Code: Select all

\counterwithout{figure}{section}
.
Under 'Writing Tips' on this page you can find another approach.

If you use the environment 'eqnarray': It should be omitted.

I hope I helped. :)
OS: Win 7 64-bit LaTeX: MikTeX 2.9 64-bit Editor: TXC 1 RC1
azertyazerty
Posts: 7
Joined: Fri Nov 26, 2010 8:30 pm

Re: How to set tag style?

Post by azertyazerty »

Thanks mate!
Post Reply