Forked from LanternD/fixed_table_column_width_aligned_text_demo.tex
Created
January 19, 2023 13:36
-
-
Save maekawatoshiki/eceb703b4f30cef97d672b2627a6a7ee to your computer and use it in GitHub Desktop.
LaTeX - Fixed table column width while aligning text left/center/right
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{array} | |
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}} | |
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}} | |
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}} | |
\begin{document} | |
\begin{tabular}{| c | L{3cm} | C{3cm} | R{3cm} |} | |
foo & | |
A cell with text that wraps around, is raggedright and allows \newline | |
manual line breaks & | |
A cell with text that wraps around, is centered and allows \newline | |
manual line breaks & | |
A cell with text that wraps around, is raggedleft and allows \newline | |
manual line breaks \\ | |
\end{tabular} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment