Generalsmall table w/hyperlink ?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
fxlatex
Posts: 6
Joined: Wed Feb 13, 2008 1:34 am

small table w/hyperlink ?

Post by fxlatex »

Hello All,
I am attempting to design a simple table and populate w/contact information; Name, Address, E Mail Address, etc. This will be .pdf document up-load to web server. I need to add mill to hyperlink to table could someone please advise on how best to proceed.
The only code I have now is simple:

Code: Select all

\begin{tabular}{|l|l|}
\hline
\multicolumn{2}{|c|}{Some Tex} \\
\hline
{\bf Members Name} & {\bf City} \\
\hline
XXXX& XXXX & XXXX\\
\hline
\end{tabular}
I information provided is much appreciate!

Corbin

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

small table w/hyperlink ?

Post by gmedina »

I am not sure about your question. The \hyperlink, \hypertarget and \hyperref commands provided by the hyperref package could be useful.

By the way, your example code has an extra alignment tab.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
fxlatex
Posts: 6
Joined: Wed Feb 13, 2008 1:34 am

Re: small table w/hyperlink ?

Post by fxlatex »

I am new and do not know what an 'alignment tab' is ... you answered my question, I will need to use package hyperref in my document.

Thanks
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

small table w/hyperlink ?

Post by gmedina »

You declared a table with two colums and then you used

Code: Select all

XXXX& XXXX & XXXX\\
the "&" character is used to separate colums so you are indicating three colums when you only have two available.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply