We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
example/cover-example3.tex 中使用了 {{}, 赵六}, 来排版出换行的效果:
example/cover-example3.tex
{{}, 赵六},
course-report/example/cover-example3.tex
Lines 12 to 19 in 13f0dc0
但作为模版来说,我并不建议这样处理。
模版具有传播性,可能这里传来传去,模版的手册可能会丢失,即使有模版手册,不能保证每个用户都能完整地看一遍手册(这是 LaTeX 模版的普遍现状),所以这个换行方法不能确保每个用户都知道。
还有一点,其实这个从某种角度也违背了”内容和样式分离”的思想,因为作为一个好的模版来讲,用户要做的是输入内容,仅此而已。
第一个想法是用 \parbox ,但是这个就需要固定宽度,可能不太好。
\parbox
可以尝试用 varwidth 环境来获得“弹性最大宽度“
varwidth
\documentclass{ctexart} \usepackage{varwidth} \usepackage{xeCJKfntef} \begin{document} 组员: \begin{varwidth}[t]{0.5\textwidth} \CJKunderline*{张三、李四、王五、赵六} \end{varwidth} 组员: \begin{varwidth}[t]{0.5\textwidth} \centering \CJKunderline*{张三、李四、王五 \\ 赵六} \end{varwidth} \end{document}
如果换行后还要是整行的下划线,可以参考我的那个 CCNUthesis
CCNUthesis
https://github.com/xkwxdyy/CCNUthesis/blob/f296da08073b2c4dd1a68da3fe34c64b21fa05e8/CCNUthesis.cls#L2431-L2544
The text was updated successfully, but these errors were encountered:
可以考虑,六月份我再详细研究下。
Sorry, something went wrong.
No branches or pull requests
问题描述
example/cover-example3.tex
中使用了{{}, 赵六},
来排版出换行的效果:course-report/example/cover-example3.tex
Lines 12 to 19 in 13f0dc0
但作为模版来说,我并不建议这样处理。
模版具有传播性,可能这里传来传去,模版的手册可能会丢失,即使有模版手册,不能保证每个用户都能完整地看一遍手册(这是 LaTeX 模版的普遍现状),所以这个换行方法不能确保每个用户都知道。
还有一点,其实这个从某种角度也违背了”内容和样式分离”的思想,因为作为一个好的模版来讲,用户要做的是输入内容,仅此而已。
优化想法
第一个想法是用
\parbox
,但是这个就需要固定宽度,可能不太好。可以尝试用
varwidth
环境来获得“弹性最大宽度“如果换行后还要是整行的下划线,可以参考我的那个
CCNUthesis
https://github.com/xkwxdyy/CCNUthesis/blob/f296da08073b2c4dd1a68da3fe34c64b21fa05e8/CCNUthesis.cls#L2431-L2544
The text was updated successfully, but these errors were encountered: