Hi,I am writing my thesis. Attached is the necessary files to compile. When I am compiling (pdflatex) I am getting an error: Undefined control sequence \maketitle
Please help me in resolving the issue.
Hi Peter,
Even after I make the change (from \normal to \normalsize or \normalfont) in line 146 in PhDthesis.cls file, the error is not going. How did you locate the exact message and place of the error.
I am using Kile editor. I am not able to get the error message you were talking about.
Does kile have any breakpoint facility?
I was thinking about this problem long time ago, but still not sure if this is possible. When we use align we can align equations such that they look accurate. However in this case each line is numbered (I can use \nonumber to skip label in line). So if I want to have common number for few lines I use matrix or array environment. However, what I can do if I want to give one number for 2nd and 3rd line and want to align equation in 2nd line with equation in first line.
For instance
A&=b+c
\\
\begin{array}{r@{\,}l@{\ \ }r@{\,}l}
A&=(b+1)+(c-1)&b=&5
\\
A&=b+c&c=&-2
\end{array}
Thank you
Aleks Kleyn
http://alekskleyn.dyndns-home.com:4080/
http://sites.google.com/site/AleksKleyn/
http://AleksKleyn.blogspot.com/
http://KleynAleks.blogspot.com/
Do you mean this?
\begin{align*}
X &= 1 + 2 + 3 \tag{42} \\
&= 2 + 3 + 1 \tag{42} \\
&= 3 + 1 + 2 \\
&= 3 + 1 + 2 \tag{42} \\
&= 3 + 1 + 2 \tag{43} \\
&= 3 + 1 + 2 \tag{43} \\
\end{align*}
--
You received this message because you are subscribed to the Google Groups "LaTeX Users Group" group.
To post to this group, send email to latexus...@googlegroups.com.
To unsubscribe from this group, send email to latexusersgro...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/latexusersgroup?hl=en.
I was thinking about this problem long time ago, but still not sure if this is possible. When we use align we can align equations such that they look accurate. However in this case each line is numbered (I can use \nonumber to skip label in line). So if I want to have common number for few lines I use matrix or array environment. However, what I can do if I want to give one number for 2nd and 3rd line and want to align equation in 2nd line with equation in first line.
For instance
A&=b+c
\\
\begin{array}{r@{\,}l@{\ \ }r@{\,}l}
A&=(b+1)+(c-1)&b=&5
\\
A&=b+c&c=&-2
\end{array}
In this case you will give number 42 to first and second line. But I want number put between 2 lines. As well I want to get number automatically like usual in equation
This is exactly minimal example. Ok, I can add few lines more
\documentclass{amsart}
\scrollmode
\usepackage[unicode]{hyperref}
\begin{document}
\maketitle
\begin{equation}%?? May be I need other environment
A&=b+c
\\
\begin{array}{r@{\,}l@{\ \ }r@{\,}l}
A&=(b+1)+(c-1)&b=&5
\\
A&=b+c&c=&-2
\end{array}
\end{equation}
\end{document}
Here I want to have number for first line and common number for lines 2 and 3 and at the same time first = align in all 3 lines.
--
\begin{align}
x &= 1 + 2 & y &= 2 + 1 \notag \\
x &= 1 + 2 & y &= 2 + 1 \label{eq:foo} \\
x &= 1 + 2 & y &= 2 + 1 \label{eq:bar} \\
x &= 1 + 2 & y &= 2 + 1 \tag{\ref{eq:bar}} \\
x &= 1 + 2 & y &= 2 + 1 \notag \\
x &= 1 + 2 & y &= 2 + 1 \label{eq:baz} \\
x &= 1 + 2 & y &= 2 + 1 \tag{\ref{eq:baz}} \\
x &= 1 + 2 & y &= 2 + 1 \tag{\ref{eq:baz}}
\end{align}
In this case, there are 5 "groups" of equations: unnumbered, (1), (2), unnumbered, (3).
Also, do you mean to say that for a group of equations sharing the same eq number, you want the eq number to be printed *once* and also to be vertically centered within that group?
________________________________
From: latexus...@googlegroups.com [latexus...@googlegroups.com] on behalf of Aleks Kleyn [Aleks...@MailAPS.org]
Sent: Monday, August 08, 2011 10:56 AM
To: latexus...@googlegroups.com
Subject: RE: [latexusersgroup] equaions align, numbers
This is exactly minimal example. Ok, I can add few lines more
\documentclass{amsart}
\scrollmode
\usepackage[unicode]{hyperref}
\begin{document}
\maketitle
\begin{equation}%?? May be I need other environment
A&=b+c
\\
\begin{array}{r@{\,}l@{\ \ }r@{\,}l}
A&=(b+1)+(c-1)&b=&5
\\
A&=b+c&c=&-2
\end{array}
\end{equation}
\end{document}
Here I want to have number for first line and common number for lines 2 and 3 and at the same time first = align in all 3 lines.
Aleks Kleyn
http://alekskleyn.dyndns-home.com:4080/
http://sites.google.com/site/AleksKleyn/<http://sites.google.com/site/alekskleyn/>
http://arxiv.org/a/kleyn_a_1
http://AleksKleyn.blogspot.com/
http://KleynAleks.blogspot.com/<http://kleynaleks.blogspot.com/>
From: latexus...@googlegroups.com [mailto:latexus...@googlegroups.com] On Behalf Of Peter Flynn
Sent: Monday, August 08, 2011 11:19 AM
To: latexus...@googlegroups.com
Subject: Re: [latexusersgroup] equaions align, numbers