
TeX.SE に同様の質問があることは承知していますが、他の例と自分の例を推測したり、問題のあるコード行を特定したりする能力が私にはありません。
切り取られるのはテキストのサイズだけではないことがわかり、混乱しています。テキスト サイズを 36 から 12 に変更しても、切り取られたままになります。
誰か提案できますか?
私の表とコードは以下の通りです。
% Table created by stargazer v.5.2 by Marek Hlavac, Harvard University. E-mail: hlavac at fas.harvard.edu
% Date and time: Sun, Apr 30, 2017 - 16:53:55
\begin{table}[!htbp] \centering
\caption{}
\label{}
\begin{tabular}{@{\extracolsep{5pt}} cccc}
\\[-1.8ex]\hline
\hline \\[-1.8ex]
& Variable & Party.With.High.Populism.Score & Party.With.Low.Populism.Score \\
\hline \\[-1.8ex]
1 & Nationalism & Supports nationalistic conception of society & Supports cosmopolitan conception of society \\
2 & Multiculturalism & Supports assimilation & Supports multiculturalism \\
3 & Immigration & Supports a tough stance on immigration & Opposes tough stance on immigration \\
4 & Democratic Freedoms & Values tradition and authoritarian values & Values libertarian values \\
5 & Civil Liberties & Supports a tough stance on crime & Promotes civil liberties \\
6 & Social Lifestyle & Opposes liberal attitudes to lifestyle & Favours liberal attitudes to lifestyle \\
7 & Establishment & Critical of the establishment & Supportive of the establishment \\
8 & Religion & Supports religions inflluence on politics as 'moral authority' & Opposes religions influence on politics \\
9 & Urban/Rural & Supports rural rather than urban interests & Supports urban rather than rural interests \\
10 & Environment & Prioritises economic growth over environment protection & Prioritises environmental protection over economic growth \\
\hline \\[-1.8ex]
\end{tabular}
\end{table}
答え1
ぜひ、環境の使い方を学んでくださいtabularx
。そうすれば、表形式の資料の生成を「自動化」するソフトウェアによって課せられる人為的な (そしておそらく不満足な) 制限から解放されます。このようなツールを使用して、表の最初のモックアップを作成することもできます。ただし、モックアップを制作プロセスの最終段階、またはほぼ最終段階として扱わないでください。
次の表では、コンテンツ投稿したものから変更されていません。大きく変更されたのはヘッダーの設定です。たとえば、列の内容は中央揃えではなく、左揃えになりました (表が広くなりすぎないように自動改行されます)。
\documentclass{article}
\usepackage[english]{babel}
\usepackage{booktabs,tabularx,caption,ragged2e}
\captionsetup{skip=0.333\baselineskip}
\newcolumntype{L}{>{\RaggedRight\arraybackslash}X}
\newlength\mylength
\settowidth\mylength{Multiculturalism} % width of 2nd col.
\begin{document}
\begin{table}[!htbp]
\setlength\tabcolsep{4pt} % default: 6pt
\caption{} \label{}
\begin{tabularx}{\textwidth}{@{} l p{\mylength} LL @{}}
\toprule
& Variable & Party with High Populism Score & Party with Low Populism Score \\
\midrule
1 & Nationalism & Supports nationalistic conception of society & Supports cosmopolitan conception of society \\
2 & Multiculturalism & Supports assimilation & Supports multiculturalism \\
3 & Immigration & Supports a tough stance on immigration & Opposes tough stance on immigration \\
4 & Democratic Freedoms & Values tradition and authoritarian values & Values libertarian values \\
5 & Civil Liberties & Supports a tough stance on crime & Promotes civil liberties \\
6 & Social Lifestyle & Opposes liberal attitudes to lifestyle & Favours liberal attitudes to lifestyle \\
7 & Establishment & Critical of the establishment & Supportive of the establishment \\
8 & Religion & Supports religion's influence on politics as `moral authority' & Opposes religion's influence on politics \\
9 & Urban/Rural & Supports rural rather than urban interests & Supports urban rather than rural interests \\
10& Environment & Prioritises economic growth over environment protection & Prioritises environmental protection over economic growth \\
\bottomrule
\end{tabularx}
\end{table}
\end{document}