웹 주소를 테이블로 묶는 방법은 무엇입니까?

웹 주소를 테이블로 묶는 방법은 무엇입니까?

아래에 복사한 13행을 제외하고 테이블의 모든 텍스트가 줄바꿈됩니다. 웹사이트는 페이지 옆으로 이어집니다. 웹 주소를 래핑하고 싶습니다. 누구든지 도와줄 수 있나요?

\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage{longtable}
\begin{document}
\maketitle
\begin{center}
\begin{longtable}{|l|p{13cm}|}
\caption[]{Disqus IT} \label{DisqusIT} \\
\hline \multicolumn{1}{|c|}{\textbf{ Sample }} & \multicolumn{1}{p{13cm}|}{\textbf{Text}} \\ \hline 
\endfirsthead
\multicolumn{2}{c}%
{{\bfseries \tablename\ \thetable{} -- Disqus IT continued from previous page}} \\
\hline \multicolumn{1}{|c|}{\textbf{ Sample }} &
\multicolumn{1}{c|}{\textbf{Text}} \\ \hline 
\endhead
\hline \multicolumn{2}{|r|}{{Continued on next page}} \\ \hline
\endfoot
\hline \hline
\endlastfoot
  13 I really really really really like to think about this stuff: http://www.senate.gov/legislative/LIS/roll\_call\_lists/roll\_call\_vote\_cfm.cfm?congress=113\&session=1\&vote=00032 \\ 
\end{longtable}
\end{center}
\end{document}

답변1

줄 바꿈을 허용하지 않는 표 형식 열에 긴 URL을 갖는 것은 의미가 없습니다. 패키지를 사용 하면 다음과 같이 작동하는 ltablex환경을 사용할 수 있습니다.tabularxlongtable . 패키지는 다음에서 이용 가능합니다. http://www.ctan.org/tex-archive/macros/latex/contrib/ltablex

올바른 라이센스 설명이 없습니다. TeXLive나 MikTeX에도 없는 이유입니다.

\documentclass{article}
\usepackage{ltablex}
\usepackage{url}
\begin{document}

\noindent
\begin{tabularx}{\linewidth}{|X|p{13cm}|}
\caption{Disqus IT \label{DisqusIT}} \\\hline 
\multicolumn{1}{|c|}{\textbf{ Sample }} & \multicolumn{1}{p{13cm}|}{\textbf{Text}} \\ \hline 
\endfirsthead
\multicolumn{2}{c}{{\bfseries \tablename\ \thetable{} -- Disqus IT continued from previous page}} \\\hline
\multicolumn{1}{|c|}{\textbf{ Sample }} & \multicolumn{1}{c|}{\textbf{Text}} \\ \hline 
\endhead
\hline \multicolumn{2}{|r|}{{Continued on next page}} \\ \hline
\endfoot
\hline \hline
\endlastfoot

  13 I really like to think about this stuff: \url{http://www.senate.gov/legislative/LIS/roll_call_lists/roll_call_vote_cfm.cfm?congress=113&session=1&vote=00032} & 
\end{tabularx}

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보