latex/beamer/\350\241\250\343\202\222\346\212\230\343\202\212\350\277\224\343\201\231.md
... ...
@@ -0,0 +1,17 @@
1
+[LaTeXで表のセル内改行はtabularx環境を使うと楽 | Jump2Fin4U](https://tgnx8810.wordpress.com/2014/11/29/latex%E3%81%A7%E8%A1%A8%E3%81%AE%E3%82%BB%E3%83%AB%E5%86%85%E6%94%B9%E8%A1%8C%E3%81%AFtabularx%E7%92%B0%E5%A2%83%E3%82%92%E4%BD%BF%E3%81%86%E3%81%A8%E6%A5%BD/)
2
+
3
+```latex
4
+\documentclass[10pt]{article}
5
+\usepackage{tabularx}
6
+
7
+\begin{document}
8
+ \begin{table}[tbp]
9
+ \centering
10
+ \caption{Fox and Dog}
11
+ \label{tab:dox}
12
+ \begin{tabularx}{\linewidth}{|X|X|}
13
+ The quick brown fox jumps over a lazy dog. The quick brown fox jumps over the lazy dog. & The quick brown dog jumps over a lazy fox. \\
14
+ \end{tabularx}
15
+ \end{table}
16
+\end{document}
17
+```
... ...
\ No newline at end of file