使单个页面包含表格并处于陆地空间模式

使单个页面包含表格并处于陆地空间模式

有如下表格。是否可以只让此表格在横向的单个页面中显示,并且如果文本太长则强制单元格换行,以便表格适合页面大小?

\documentclass[preprint,12pt]{elsarticle}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\begin{document}
\begin{table}[]
\begin{tabular}{llll}
What is Lorem Ipsum      & What is Lorem Ipsum      & Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing                                                                                                                       & What is Lorem Ipsum      \\
Where does it come from? & Where does it come from? & It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very & Where does it come from? \\
Why do we use it?        & Why do we use it?        & There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined                                                                                                                                                           & Why do we use it?        \\
Where can I get some?    & Where can I get some?    & It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web                                                                                                       & Where can I get some?   
\end{tabular}
\end{table}
\end{document}

答案1

在此处输入图片描述

\documentclass[preprint,12pt]{elsarticle}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{tabularx}
\usepackage{ltablex}
\usepackage{lscape}
\usepackage{booktabs}
\begin{document}
\begin{landscape}
\begin{tabularx}{\linewidth}{XXXX}\toprule[2pt]
What is Lorem Ipsum      & What is Lorem Ipsum      & Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing                                                                                                                       & What is Lorem Ipsum      \\ \midrule

Where does it come from? & Where does it come from? & It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very & Where does it come from? \\ \midrule
Why do we use it?        & Why do we use it?        & There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined                                                                                                                                                           & Why do we use it?        \\ \midrule
Where can I get some?    & Where can I get some?    & It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web                                                                                                       & Where can I get some? \\ \bottomrule[2pt]  
\end{tabularx}
\end{landscape}
\end{document}

相关内容