<html><body><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:12pt"><div><span>Hello all,</span></div><div><br><span></span></div><div><span>I got interested in Baskerville fonts (for no apparent reason). I am curious if :</span></div><div><span><br></span></div><div><span>I can produce Tex/Latex using Baskerville fonts?</span></div><div><span><br></span></div><div><span>If yes, what is the relevant latex package (to be downloaded)? I have the full version of TexLive 2010. <br></span></div><div><br><span></span></div><div><span>Thanks in advance,</span></div><div><span>Shom<br></span></div><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><font face="Arial" size="2"><hr size="1"><b><span style="font-weight: bold;">From:</span></b> "macosx-tex-request@email.esm.psu.edu"
 <macosx-tex-request@email.esm.psu.edu><br><b><span style="font-weight: bold;">To:</span></b> macosx-tex@email.esm.psu.edu<br><b><span style="font-weight: bold;">Sent:</span></b> Wednesday, June 22, 2011 3:00 PM<br><b><span style="font-weight: bold;">Subject:</span></b> MacOSX-TeX Digest, Vol 44, Issue 15<br></font><br>
Send MacOSX-TeX mailing list submissions to<br>    <a ymailto="mailto:macosx-tex@email.esm.psu.edu" href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a><br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>    http://email.esm.psu.edu/mailman/listinfo/macosx-tex<br>or, via email, send a message with subject or body 'help' to<br>    <a ymailto="mailto:macosx-tex-request@email.esm.psu.edu" href="mailto:macosx-tex-request@email.esm.psu.edu">macosx-tex-request@email.esm.psu.edu</a><br><br>You can reach the person managing the list at<br>    <a ymailto="mailto:macosx-tex-owner@email.esm.psu.edu" href="mailto:macosx-tex-owner@email.esm.psu.edu">macosx-tex-owner@email.esm.psu.edu</a><br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of MacOSX-TeX digest..."<br><br><br>Today's Topics:<br><br>   1. Item align (David
 Arnold)<br>   2. Re: Item align (Michael Sharpe)<br>   3. Re: Item align (David Arnold)<br>   4. Re: Item align (Ross Moore)<br>   5. Re: Item align (David Arnold)<br>   6. Re: Item align (Ross Moore)<br>   7. Re: Item align (David Arnold)<br>   8. Re: Item align (Michael Sharpe)<br>   9. Re: Item align (David Arnold)<br>  10. Section title as running header (Per Ting)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Tue, 21 Jun 2011 15:12:26 -0700<br>From: David Arnold <<a ymailto="mailto:dwarnold45@suddenlink.net" href="mailto:dwarnold45@suddenlink.net">dwarnold45@suddenlink.net</a>><br>Subject: [OS X TeX] Item align<br>To: MacOSX-TeX <<a ymailto="mailto:MacOSX-TeX@email.esm.psu.edu" href="mailto:MacOSX-TeX@email.esm.psu.edu">MacOSX-TeX@email.esm.psu.edu</a>><br>Message-ID: <<a
 ymailto="mailto:708D35FB-E552-4B1F-8551-E1D1CF9F18D9@suddenlink.net" href="mailto:708D35FB-E552-4B1F-8551-E1D1CF9F18D9@suddenlink.net">708D35FB-E552-4B1F-8551-E1D1CF9F18D9@suddenlink.net</a>><br>Content-Type: text/plain; charset=us-ascii<br><br>All,<br><br>I am looking for a way to align the baseline of the first equation with the baseline of the item number.<br><br>\documentclass{article}<br>\usepackage{amsmath}<br>\begin{document}<br> <br>\begin{enumerate}<br><br>\item<br>\begin{align*}<br>2x+3y&=4\\<br>3x-4y&=12 <br>\end{align*}<br><br>\end{enumerate}<br>\end{document}<br><br>I don't necessarily need to use the align environment. In fact, I don't need the system to be centered. It could be indented a bit away from the item number.<br><br>Any thoughts or suggestions are welcome.<br><br>Thanks.<br><br>David<br><br>------------------------------<br><br>Message: 2<br>Date: Tue, 21 Jun 2011 15:27:35 -0700<br>From: Michael Sharpe <<a
 ymailto="mailto:msharpe@ucsd.edu" href="mailto:msharpe@ucsd.edu">msharpe@ucsd.edu</a>><br>Subject: Re: [OS X TeX] Item align<br>To: TeX on Mac OS X Mailing List <<a ymailto="mailto:macosx-tex@email.esm.psu.edu" href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a>><br>Message-ID: <<a ymailto="mailto:D1707C1A-BA12-4A5D-80DF-AB0EE9A59085@ucsd.edu" href="mailto:D1707C1A-BA12-4A5D-80DF-AB0EE9A59085@ucsd.edu">D1707C1A-BA12-4A5D-80DF-AB0EE9A59085@ucsd.edu</a>><br>Content-Type: text/plain; charset=us-ascii<br><br><br>On Jun 21, 2011, at 3:12 PM, David Arnold wrote:<br><br>> \documentclass{article}<br>> \usepackage{amsmath}<br>> \begin{document}<br>> <br>> \begin{enumerate}<br>> <br>> \item<br>> \begin{align*}<br>> 2x+3y&=4\\<br>> 3x-4y&=12 <br>> \end{align*}<br>> <br>> \end{enumerate}<br>> \end{document}<br><br>You can put the align material inside a minipage,
 Eg,<br><br>\documentclass{article}<br>\usepackage{amsmath}<br>\begin{document}<br><br>\begin{enumerate}<br><br>\item<br>\begin{minipage}{2in}\begin{align*}<br>2x+3y&=4\\<br>3x-4y&=12 <br>\end{align*}<br>\end{minipage}<br>\end{enumerate}<br>\end{document}<br><br><br><br>------------------------------<br><br>Message: 3<br>Date: Tue, 21 Jun 2011 15:34:56 -0700<br>From: David Arnold <<a ymailto="mailto:dwarnold45@suddenlink.net" href="mailto:dwarnold45@suddenlink.net">dwarnold45@suddenlink.net</a>><br>Subject: Re: [OS X TeX] Item align<br>To: TeX on Mac OS X Mailing List <<a ymailto="mailto:macosx-tex@email.esm.psu.edu" href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a>><br>Message-ID: <<a ymailto="mailto:6B9AC246-9FCF-41A9-AA39-5ED0FEB33EAF@suddenlink.net" href="mailto:6B9AC246-9FCF-41A9-AA39-5ED0FEB33EAF@suddenlink.net">6B9AC246-9FCF-41A9-AA39-5ED0FEB33EAF@suddenlink.net</a>><br>Content-Type: text/plain;
 charset=us-ascii<br><br>Michael,<br><br>Not bad, but in this case the baseline of the first equations winds up atop the baseline of the item number.<br><br>\documentclass{article}<br>\usepackage{amsmath}<br>\begin{document}<br><br>\begin{enumerate}<br><br>\item<br>\begin{minipage}{2in}\begin{align*}<br>2x+3y&=4\\<br>y&=\frac23x-4<br>\end{align*}<br>\end{minipage}<br>\end{enumerate}<br>\end{document}<br><br>D.<br><br>On Jun 21, 2011, at 3:27 PM, Michael Sharpe wrote:<br><br>> <br>> On Jun 21, 2011, at 3:12 PM, David Arnold wrote:<br>> <br>>> \documentclass{article}<br>>> \usepackage{amsmath}<br>>> \begin{document}<br>>> <br>>> \begin{enumerate}<br>>> <br>>> \item<br>>> \begin{align*}<br>>> 2x+3y&=4\\<br>>> 3x-4y&=12 <br>>> \end{align*}<br>>> <br>>> \end{enumerate}<br>>> \end{document}<br>> <br>> You can put the align material inside a
 minipage, Eg,<br>> <br>> \documentclass{article}<br>> \usepackage{amsmath}<br>> \begin{document}<br>> <br>> \begin{enumerate}<br>> <br>> \item<br>> \begin{minipage}{2in}\begin{align*}<br>> 2x+3y&=4\\<br>> 3x-4y&=12 <br>> \end{align*}<br>> \end{minipage}<br>> \end{enumerate}<br>> \end{document}<br>> <br>> ----------- Please Consult the Following Before Posting -----------<br>> TeX FAQ: http://www.tex.ac.uk/faq<br>> List Reminders and Etiquette: http://email.esm.psu.edu/mac-tex/<br>> List Archive: http://tug.org/pipermail/macostex-archives/<br>> TeX on Mac OS X Website: http://mactex-wiki.tug.org/<br>> List Info: <a href="http://email.esm.psu.edu/mailman/listinfo/macosx-tex" target="_blank">http://email.esm.psu.edu/mailman/listinfo/macosx-tex</a><br>> <br><br><br><br>------------------------------<br><br>Message: 4<br>Date: Wed, 22 Jun 2011 08:40:26 +1000<br>From: Ross Moore
 <<a ymailto="mailto:ross.moore@mq.edu.au" href="mailto:ross.moore@mq.edu.au">ross.moore@mq.edu.au</a>><br>Subject: Re: [OS X TeX] Item align<br>To: TeX on Mac OS X Mailing List <<a ymailto="mailto:macosx-tex@email.esm.psu.edu" href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a>><br>Message-ID: <<a ymailto="mailto:C8F34958-431F-4F1F-A9DB-9740B0A510EA@mq.edu.au" href="mailto:C8F34958-431F-4F1F-A9DB-9740B0A510EA@mq.edu.au">C8F34958-431F-4F1F-A9DB-9740B0A510EA@mq.edu.au</a>><br>Content-Type: text/plain; charset="iso-8859-1"<br><br><br>On 22/06/2011, at 8:12 AM, David Arnold wrote:<br><br>> All,<br>> <br>> I am looking for a way to align the baseline of the first equation with the baseline of the item number.<br>> <br>> \documentclass{article}<br>> \usepackage{amsmath}<br>> \begin{document}<br>> <br>> \begin{enumerate}<br>> <br>> \item<br>> \begin{align*}<br>>
 2x+3y&=4\\<br>> 3x-4y&=12 <br>> \end{align*}<br>> <br>> \end{enumerate}<br>> \end{document}<br>> <br>> I don't necessarily need to use the align environment.<br><br>Most certainly you do not want it, since it is an outer displayed-math environment.<br>AMSmath provides other methods for inner alignment, but you many have to fiddle with <br>the exact vertical placement.<br><br>e.g. here are 3 different solutions using sets of parameters to adjust the spacing:<br><br>\begin{enumerate}<br><br>\item<br>\begin{align*}<br>2x+3y&=4\\<br>3x-4y&=12 <br>\end{align*}<br><br>\item<br>\hspace{.5cm}\lower.65\baselineskip\hbox{$\begin{aligned}<br>2x+3y&=4\\<br>3x-4y&=12 <br>\end{aligned}$}<br><br>\item<br>\hspace{.5cm}\xy*!D(.125)\xybox{\xymatrix @R=0pt @C=0pt {<br>2x+3y&=&4\\<br>3x-4y&=&12 <br>}}\endxy<br><br>\item<br>\hspace{.5cm}\xy*+!U(2.75)\xybox{$\begin{aligned}<br>2x+3y&=4\\<br>3x-4y&=12
 <br>\end{aligned}$}\endxy<br><br>\end{enumerate}<br><br>-------------- next part --------------<br>A non-text attachment was scrubbed...<br>Name: texshop_image.jpeg<br>Type: image/jpeg<br>Size: 37801 bytes<br>Desc: not available<br>Url : http://email.esm.psu.edu/pipermail/macosx-tex/attachments/20110622/b3f2e519/texshop_image-0001.jpeg<br>-------------- next part --------------<br><br>> In fact, I don't need the system to be centered. It could be indented a bit away from the item number.<br>> <br>> Any thoughts or suggestions are welcome.<br>> <br>> Thanks.<br>> <br>> David<br><br><br>Hope this helps,<br><br>    Ross<br><br>------------------------------------------------------------------------<br>Ross Moore                                       <a ymailto="mailto:ross.moore@mq.edu.au"
 href="mailto:ross.moore@mq.edu.au">ross.moore@mq.edu.au</a> <br>Mathematics Department                           office: E7A-419      <br>Macquarie University                             tel: +61 (0)2 9850 8955<br>Sydney, Australia  2109                          fax: +61 (0)2 9850 8114<br>------------------------------------------------------------------------<br><br><br><br><br>------------------------------<br><br>Message: 5<br>Date: Tue, 21 Jun 2011 15:44:08 -0700<br>From: David Arnold <<a ymailto="mailto:dwarnold45@suddenlink.net" href="mailto:dwarnold45@suddenlink.net">dwarnold45@suddenlink.net</a>><br>Subject: Re: [OS X TeX] Item align<br>To: TeX on Mac OS X Mailing List <<a ymailto="mailto:macosx-tex@email.esm.psu.edu"
 href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a>><br>Message-ID: <<a ymailto="mailto:D4D1431C-522F-4D67-9C25-D613276ED32B@suddenlink.net" href="mailto:D4D1431C-522F-4D67-9C25-D613276ED32B@suddenlink.net">D4D1431C-522F-4D67-9C25-D613276ED32B@suddenlink.net</a>><br>Content-Type: text/plain; charset="iso-8859-1"<br><br>Got an error on that:<br><br>./Untitled.tex:20: Undefined control sequence.<br>l.20 \hspace{.5cm}\xy<br>                     *!D(.125)\xybox{\xymatrix @R=0pt @C=0pt {<br>? <br><br>D.<br><br>On Jun 21, 2011, at 3:40 PM, Ross Moore wrote:<br><br>> <br>> On 22/06/2011, at 8:12 AM, David Arnold wrote:<br>> <br>>> All,<br>>> <br>>> I am looking for a way to align the baseline of the first equation with the baseline of the item number.<br>>> <br>>> \documentclass{article}<br>>> \usepackage{amsmath}<br>>>
 \begin{document}<br>>> <br>>> \begin{enumerate}<br>>> <br>>> \item<br>>> \begin{align*}<br>>> 2x+3y&=4\\<br>>> 3x-4y&=12 <br>>> \end{align*}<br>>> <br>>> \end{enumerate}<br>>> \end{document}<br>>> <br>>> I don't necessarily need to use the align environment.<br>> <br>> Most certainly you do not want it, since it is an outer displayed-math environment.<br>> AMSmath provides other methods for inner alignment, but you many have to fiddle with <br>> the exact vertical placement.<br>> <br>> e.g. here are 3 different solutions using sets of parameters to adjust the spacing:<br>> <br>> \begin{enumerate}<br>> <br>> \item<br>> \begin{align*}<br>> 2x+3y&=4\\<br>> 3x-4y&=12 <br>> \end{align*}<br>> <br>> \item<br>> \hspace{.5cm}\lower.65\baselineskip\hbox{$\begin{aligned}<br>> 2x+3y&=4\\<br>> 3x-4y&=12
 <br>> \end{aligned}$}<br>> <br>> \item<br>> \hspace{.5cm}\xy*!D(.125)\xybox{\xymatrix @R=0pt @C=0pt {<br>> 2x+3y&=&4\\<br>> 3x-4y&=&12 <br>> }}\endxy<br>> <br>> \item<br>> \hspace{.5cm}\xy*+!U(2.75)\xybox{$\begin{aligned}<br>> 2x+3y&=4\\<br>> 3x-4y&=12 <br>> \end{aligned}$}\endxy<br>> <br>> \end{enumerate}<br>> <br>> <texshop_image.jpeg><br>>> In fact, I don't need the system to be centered. It could be indented a bit away from the item number.<br>>> <br>>> Any thoughts or suggestions are welcome.<br>>> <br>>> Thanks.<br>>> <br>>> David<br>> <br>> <br>> Hope this helps,<br>> <br>>     Ross<br>> <br>> ------------------------------------------------------------------------<br>> Ross Moore                             
          <a ymailto="mailto:ross.moore@mq.edu.au" href="mailto:ross.moore@mq.edu.au">ross.moore@mq.edu.au</a> <br>> Mathematics Department                           office: E7A-419      <br>> Macquarie University                             tel: +61 (0)2 9850 8955<br>> Sydney, Australia  2109                          fax: +61 (0)2 9850 8114<br>> ------------------------------------------------------------------------<br>> <br>> <br>> <br>> ----------- Please Consult the Following Before Posting -----------<br>> TeX FAQ: <a href="http://www.tex.ac.uk/faq" target="_blank">http://www.tex.ac.uk/faq</a><br>> List Reminders and Etiquette: <a href="http://email.esm.psu.edu/mac-tex/"
 target="_blank">http://email.esm.psu.edu/mac-tex/</a><br>> List Archive: <a href="http://tug.org/pipermail/macostex-archives/" target="_blank">http://tug.org/pipermail/macostex-archives/</a><br>> TeX on Mac OS X Website: <a href="http://mactex-wiki.tug.org/" target="_blank">http://mactex-wiki.tug.org/</a><br>> List Info: <a href="http://email.esm.psu.edu/mailman/listinfo/macosx-tex" target="_blank">http://email.esm.psu.edu/mailman/listinfo/macosx-tex</a><br>> <br><br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: http://email.esm.psu.edu/pipermail/macosx-tex/attachments/20110621/d64fdbab/attachment-0001.html<br><br>------------------------------<br><br>Message: 6<br>Date: Wed, 22 Jun 2011 08:45:22 +1000<br>From: Ross Moore <<a ymailto="mailto:ross.moore@mq.edu.au" href="mailto:ross.moore@mq.edu.au">ross.moore@mq.edu.au</a>><br>Subject: Re: [OS X TeX] Item align<br>To: TeX on Mac OS X Mailing List
 <<a ymailto="mailto:macosx-tex@email.esm.psu.edu" href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a>><br>Message-ID: <<a ymailto="mailto:39A2B31D-8A97-435F-BFC8-7F9BF00E3524@mq.edu.au" href="mailto:39A2B31D-8A97-435F-BFC8-7F9BF00E3524@mq.edu.au">39A2B31D-8A97-435F-BFC8-7F9BF00E3524@mq.edu.au</a>><br>Content-Type: text/plain; charset=us-ascii<br><br><br>On 22/06/2011, at 8:44 AM, David Arnold wrote:<br><br>> Got an error on that:<br>> <br>> ./Untitled.tex:20: Undefined control sequence.<br>> l.20 \hspace{.5cm}\xy<br>>                      *!D(.125)\xybox{\xymatrix @R=0pt @C=0pt {<br>> ? <br><br><br>\usepackage[all]{xy}<br><br>> <br>> D.<br><br>------------------------------------------------------------------------<br>Ross Moore                               
        <a ymailto="mailto:ross.moore@mq.edu.au" href="mailto:ross.moore@mq.edu.au">ross.moore@mq.edu.au</a> <br>Mathematics Department                           office: E7A-419      <br>Macquarie University                             tel: +61 (0)2 9850 8955<br>Sydney, Australia  2109                          fax: +61 (0)2 9850 8114<br>------------------------------------------------------------------------<br><br><br><br><br><br>------------------------------<br><br>Message: 7<br>Date: Tue, 21 Jun 2011 15:59:06 -0700<br>From: David Arnold <<a ymailto="mailto:dwarnold45@suddenlink.net" href="mailto:dwarnold45@suddenlink.net">dwarnold45@suddenlink.net</a>><br>Subject: Re: [OS X TeX] Item align<br>To: TeX on Mac OS X
 Mailing List <<a ymailto="mailto:macosx-tex@email.esm.psu.edu" href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a>><br>Message-ID: <<a ymailto="mailto:793A8954-5CA9-49F9-AEFE-81843DEC0562@suddenlink.net" href="mailto:793A8954-5CA9-49F9-AEFE-81843DEC0562@suddenlink.net">793A8954-5CA9-49F9-AEFE-81843DEC0562@suddenlink.net</a>><br>Content-Type: text/plain; charset=us-ascii<br><br>Aha!<br><br>Thanks.<br><br>D.<br><br>On Jun 21, 2011, at 3:45 PM, Ross Moore wrote:<br><br>> <br>> On 22/06/2011, at 8:44 AM, David Arnold wrote:<br>> <br>>> Got an error on that:<br>>> <br>>> ./Untitled.tex:20: Undefined control sequence.<br>>> l.20 \hspace{.5cm}\xy<br>>>                     *!D(.125)\xybox{\xymatrix @R=0pt @C=0pt {<br>>> ? <br>> <br>> <br>> \usepackage[all]{xy}<br>> <br>>> <br>>> D.<br>> <br>>
 ------------------------------------------------------------------------<br>> Ross Moore                                       <a ymailto="mailto:ross.moore@mq.edu.au" href="mailto:ross.moore@mq.edu.au">ross.moore@mq.edu.au</a> <br>> Mathematics Department                           office: E7A-419      <br>> Macquarie University                             tel: +61 (0)2 9850 8955<br>> Sydney, Australia  2109                          fax: +61 (0)2 9850 8114<br>> ------------------------------------------------------------------------<br>> <br>> <br>> <br>> ----------- Please Consult the Following Before Posting
 -----------<br>> TeX FAQ: <a href="http://www.tex.ac.uk/faq" target="_blank">http://www.tex.ac.uk/faq</a><br>> List Reminders and Etiquette: <a href="http://email.esm.psu.edu/mac-tex/" target="_blank">http://email.esm.psu.edu/mac-tex/</a><br>> List Archive: <a href="http://tug.org/pipermail/macostex-archives/" target="_blank">http://tug.org/pipermail/macostex-archives/</a><br>> TeX on Mac OS X Website: <a href="http://mactex-wiki.tug.org/" target="_blank">http://mactex-wiki.tug.org/</a><br>> List Info: <a href="http://email.esm.psu.edu/mailman/listinfo/macosx-tex" target="_blank">http://email.esm.psu.edu/mailman/listinfo/macosx-tex</a><br>> <br><br><br><br>------------------------------<br><br>Message: 8<br>Date: Tue, 21 Jun 2011 16:28:35 -0700<br>From: Michael Sharpe <<a ymailto="mailto:msharpe@ucsd.edu" href="mailto:msharpe@ucsd.edu">msharpe@ucsd.edu</a>><br>Subject: Re: [OS X TeX] Item align<br>To: TeX on Mac OS X Mailing List
 <<a ymailto="mailto:macosx-tex@email.esm.psu.edu" href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a>><br>Message-ID: <<a ymailto="mailto:EDE24B22-3DDD-48F3-AB8A-F25A980F4899@ucsd.edu" href="mailto:EDE24B22-3DDD-48F3-AB8A-F25A980F4899@ucsd.edu">EDE24B22-3DDD-48F3-AB8A-F25A980F4899@ucsd.edu</a>><br>Content-Type: text/plain; charset=us-ascii<br><br><br>On Jun 21, 2011, at 3:34 PM, David Arnold wrote:<br><br>> Michael,<br>> <br>> Not bad, but in this case the baseline of the first equations winds up atop the baseline of the item number.<br>> <br>> \documentclass{article}<br>> \usepackage{amsmath}<br>> \begin{document}<br>> <br>> \begin{enumerate}<br>> <br>> \item<br>> \begin{minipage}{2in}\begin{align*}<br>> 2x+3y&=4\\<br>> y&=\frac23x-4<br>> \end{align*}<br>> \end{minipage}<br>> \end{enumerate}<br>> \end{document}<br>> <br>> D.<br>> <br>> On Jun
 21, 2011, at 3:27 PM, Michael Sharpe wrote:<br>> <br>>> <br>>> On Jun 21, 2011, at 3:12 PM, David Arnold wrote:<br>>> <br>>>> \documentclass{article}<br>>>> \usepackage{amsmath}<br>>>> \begin{document}<br>>>> <br>>>> \begin{enumerate}<br>>>> <br>>>> \item<br>>>> \begin{align*}<br>>>> 2x+3y&=4\\<br>>>> 3x-4y&=12 <br>>>> \end{align*}<br>>>> <br>>>> \end{enumerate}<br>>>> \end{document}<br>>> <br>>> You can put the align material inside a minipage, Eg,<br>>> <br>>> \documentclass{article}<br>>> \usepackage{amsmath}<br>>> \begin{document}<br>>> <br>>> \begin{enumerate}<br>>> <br>>> \item<br>>> \begin{minipage}{2in}\begin{align*}<br>>> 2x+3y&=4\\<br>>> 3x-4y&=12 <br>>> \end{align*}<br>>>
 \end{minipage}<br>>> \end{enumerate}<br>>> \end{document}<br>>> <br><br>I missed that---some manual vertical adjustment seems necessary. You can use \raisebox on the minipage:<br><br>\documentclass{article}<br>\usepackage{amsmath}<br>\begin{document}<br><br>\begin{enumerate}<br><br>\item<br>\raisebox{-.8pt}{\begin{minipage}{2in}\begin{align*}<br>2x+3y&=4\\<br>3x-4y&=12 <br>\end{align*}<br>\end{minipage}}<br>\end{enumerate}<br>\end{document}<br><br><br><br><br>------------------------------<br><br>Message: 9<br>Date: Tue, 21 Jun 2011 16:47:44 -0700<br>From: David Arnold <<a ymailto="mailto:dwarnold45@suddenlink.net" href="mailto:dwarnold45@suddenlink.net">dwarnold45@suddenlink.net</a>><br>Subject: Re: [OS X TeX] Item align<br>To: TeX on Mac OS X Mailing List <<a ymailto="mailto:macosx-tex@email.esm.psu.edu" href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a>><br>Message-ID: <<a
 ymailto="mailto:094CF580-0B82-410A-9895-26AEEA9F0F5C@suddenlink.net" href="mailto:094CF580-0B82-410A-9895-26AEEA9F0F5C@suddenlink.net">094CF580-0B82-410A-9895-26AEEA9F0F5C@suddenlink.net</a>><br>Content-Type: text/plain; charset=us-ascii<br><br>Michael,<br><br>Thanks. I went with Ross's strategy:<br><br>% Exercise #7<br>\begin{exercise}\label{ex:4-1-7}<br>\hspace{.5cm}\lower0.65\baselineskip\hbox{$\begin{aligned}<br>3x-3y&=12\\<br>x-y&=-3<br>\end{aligned}$}<br><br>I was able to use our perl code section to do something like this, where the second equation has the form y=slope2 * x+b.<br><br>my $howmuch=isinteger($slope2) ? "0.65" : "1.0";<br><br>Then code our question like this:<br><br>\shortqu=\hspace{.5cm}\lower#howmuch\baselineskip\hbox{$\begin{aligned}<br>#eqn1&=#C\\<br>y&=#eqn2<br>\end{aligned}$}<br>|@|<br><br>The result is not bad. See exercises 7-18 on page 4
 of:<br><br>http://msenux.redwoods.edu/ElemAlgText/chapter4/chapter4.pdf<br><br>Thanks for your help.<br><br>David.<br><br><br><br><br><br>On Jun 21, 2011, at 4:28 PM, Michael Sharpe wrote:<br><br>> <br>> On Jun 21, 2011, at 3:34 PM, David Arnold wrote:<br>> <br>>> Michael,<br>>> <br>>> Not bad, but in this case the baseline of the first equations winds up atop the baseline of the item number.<br>>> <br>>> \documentclass{article}<br>>> \usepackage{amsmath}<br>>> \begin{document}<br>>> <br>>> \begin{enumerate}<br>>> <br>>> \item<br>>> \begin{minipage}{2in}\begin{align*}<br>>> 2x+3y&=4\\<br>>> y&=\frac23x-4<br>>> \end{align*}<br>>> \end{minipage}<br>>> \end{enumerate}<br>>> \end{document}<br>>> <br>>> D.<br>>> <br>>> On Jun 21, 2011, at 3:27 PM, Michael Sharpe wrote:<br>>> <br>>>>
 <br>>>> On Jun 21, 2011, at 3:12 PM, David Arnold wrote:<br>>>> <br>>>>> \documentclass{article}<br>>>>> \usepackage{amsmath}<br>>>>> \begin{document}<br>>>>> <br>>>>> \begin{enumerate}<br>>>>> <br>>>>> \item<br>>>>> \begin{align*}<br>>>>> 2x+3y&=4\\<br>>>>> 3x-4y&=12 <br>>>>> \end{align*}<br>>>>> <br>>>>> \end{enumerate}<br>>>>> \end{document}<br>>>> <br>>>> You can put the align material inside a minipage, Eg,<br>>>> <br>>>> \documentclass{article}<br>>>> \usepackage{amsmath}<br>>>> \begin{document}<br>>>> <br>>>> \begin{enumerate}<br>>>> <br>>>> \item<br>>>> \begin{minipage}{2in}\begin{align*}<br>>>> 2x+3y&=4\\<br>>>> 3x-4y&=12
 <br>>>> \end{align*}<br>>>> \end{minipage}<br>>>> \end{enumerate}<br>>>> \end{document}<br>>>> <br>> <br>> I missed that---some manual vertical adjustment seems necessary. You can use \raisebox on the minipage:<br>> <br>> \documentclass{article}<br>> \usepackage{amsmath}<br>> \begin{document}<br>> <br>> \begin{enumerate}<br>> <br>> \item<br>> \raisebox{-.8pt}{\begin{minipage}{2in}\begin{align*}<br>> 2x+3y&=4\\<br>> 3x-4y&=12 <br>> \end{align*}<br>> \end{minipage}}<br>> \end{enumerate}<br>> \end{document}<br>> <br>> <br>> ----------- Please Consult the Following Before Posting -----------<br>> TeX FAQ: <a href="http://www.tex.ac.uk/faq" target="_blank">http://www.tex.ac.uk/faq</a><br>> List Reminders and Etiquette: <a href="http://email.esm.psu.edu/mac-tex/" target="_blank">http://email.esm.psu.edu/mac-tex/</a><br>> List Archive: <a
 href="http://tug.org/pipermail/macostex-archives/" target="_blank">http://tug.org/pipermail/macostex-archives/</a><br>> TeX on Mac OS X Website: <a href="http://mactex-wiki.tug.org/" target="_blank">http://mactex-wiki.tug.org/</a><br>> List Info: <a href="http://email.esm.psu.edu/mailman/listinfo/macosx-tex" target="_blank">http://email.esm.psu.edu/mailman/listinfo/macosx-tex</a><br>> <br><br><br><br>------------------------------<br><br>Message: 10<br>Date: Wed, 22 Jun 2011 00:45:39 -0400<br>From: Per Ting <<a ymailto="mailto:perting@gmail.com" href="mailto:perting@gmail.com">perting@gmail.com</a>><br>Subject: [OS X TeX] Section title as running header<br>To: TeX on Mac OS X Mailing List <<a ymailto="mailto:macosx-tex@email.esm.psu.edu" href="mailto:macosx-tex@email.esm.psu.edu">macosx-tex@email.esm.psu.edu</a>><br>Message-ID: <BANLkTinyxePTC58=<a ymailto="mailto:vj1BgmDVwVKvTXuZEw@mail.gmail.com"
 href="mailto:vj1BgmDVwVKvTXuZEw@mail.gmail.com">vj1BgmDVwVKvTXuZEw@mail.gmail.com</a>><br>Content-Type: text/plain; charset="iso-8859-1"<br><br>I realize that this is not the appropriate forum to ask this question. I<br>apologize for posting this question.  I have already posted it on<br>comp.text.tex but have received no response.<br><br>I am writing a book where the running headers of even pages are<br>chapter titles and running head of odd pages are section titles. The<br>last section of each chapter is a section called "Problems". I would<br>like this section to have no section number, appear in the TOC without<br>section number and be justified under the title of other sections (not<br>under the number of other sections) and appear in the heading of odd<br>pages as "Problems" with no section number. What I have been doing is<br>the following. At the end of Chapter 1 I have added:<br><br>\newpage<br>\def\mr{\large{\it
 Problems}}<br>\let\rightmark\mr<br>\section*{Problems}<br>\addcontentsline{toc}{section}{Problems}%<br><br>This causes:<br>1- "Problems" to appear in the TOC without section number but left<br>justified under other sections that start with section number<br>2-When Chapter 2 starts, on odd pages I do not have section number,<br>rather "Problems" appears for the entire book as the header on odd<br>pages.<br><br>How can I solve these two problems? How cabn I reset the running<br>header to the section number again at the beginning of Chapter 2 and<br>have "Problems" correctly justified in TOCs.<br><br>Thanks<br><br>Per<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: http://email.esm.psu.edu/pipermail/macosx-tex/attachments/20110622/2248db00/attachment-0001.html<br><br>------------------------------<br><br> <br>-------------------------- Helpful Info --------------------------<br>TeX FAQ: <a
 href="http://www.tex.ac.uk/faq" target="_blank">http://www.tex.ac.uk/faq</a><br>List Reminders and Etiquette: <a href="http://email.esm.psu.edu/mac-tex/" target="_blank">http://email.esm.psu.edu/mac-tex/</a><br>List Info: <a href="http://email.esm.psu.edu/mailman/listinfo/macosx-tex" target="_blank">http://email.esm.psu.edu/mailman/listinfo/macosx-tex</a><br>List Archive: <a href="http://tug.org/pipermail/macostex-archives/" target="_blank">http://tug.org/pipermail/macostex-archives/</a><br>TeX on Mac OS X Website: <a href="http://mactex-wiki.tug.org/" target="_blank">http://mactex-wiki.tug.org/</a><br><br><br><br>End of MacOSX-TeX Digest, Vol 44, Issue 15<br>******************************************<br><br><br></div></div></div></body></html>