如何解决 LaTeX 中文本太宽的错误?
How do I solve text too wide error in LaTeX?
文字太长,会在整个第一行随机打断我的第一个词...我不知道如何使它看起来像另一个短文字。这是我的代码:
\documentclass[letterpaper,11pt]{article}
\usepackage{simplecv}
\begin{document}
\vspace{1em}
\entrybig
{\textbf{LexBox}}{Nov 2020 - Present}
LexBox represents the fastest and the most efficient way to make a contravention complaint without to get in touch with a lawyer.
\\textbf{Technologies:} C\#, ASP.NET, jQuery AJAX, CSS \& HTML
\entrybig
{\textbf{GAM - Group Activity Manager}}{Oct 2020 - Present}
{This application is designed to remote control multiple desktops at the same time. \
\textbf{Technologies:} C\#, .NET Framework}
\end{document}
.sty 文件是 this
结果是
this
三大问题:
你不能单独使用 \entrybig
,它需要在列表中,例如\outerlist{}
您对 \entrybig
使用的语法是错误的。这个宏需要 4 个强制参数,不是 2,不是 3,恰好是 4
因为这个宏被插入到 table 单元格中,所以你不能滥用 \
换行符
\documentclass[letterpaper,11pt]{article}
% Choose bibliography style for formatting list of publications
\usepackage[style=ieee,url=false,doi=false,maxbibnames=99,sorting=ydnt,dashed=false]{biblatex}
\bibliography{papers}
% Choose theme, e.g. black, RedViolet, ForestGreen, MidnightBlue
\def\theme{MidnightBlue}
\usepackage{simplecv}
\begin{document}
See more of my projects on \website{https://github.com/Mihutzen}
\vspace{1em}
\outerlist{
\entrybig
{\textbf{ETH Zurich}}
{Zurich, CH}
{M.S. in Computer Science, GPA: 5.63/6.00}
{2018\textendash 2020}
}
\end{document}
文字太长,会在整个第一行随机打断我的第一个词...我不知道如何使它看起来像另一个短文字。这是我的代码:
\documentclass[letterpaper,11pt]{article}
\usepackage{simplecv}
\begin{document}
\vspace{1em}
\entrybig
{\textbf{LexBox}}{Nov 2020 - Present}
LexBox represents the fastest and the most efficient way to make a contravention complaint without to get in touch with a lawyer.
\\textbf{Technologies:} C\#, ASP.NET, jQuery AJAX, CSS \& HTML
\entrybig
{\textbf{GAM - Group Activity Manager}}{Oct 2020 - Present}
{This application is designed to remote control multiple desktops at the same time. \
\textbf{Technologies:} C\#, .NET Framework}
\end{document}
.sty 文件是 this
结果是 this
三大问题:
你不能单独使用
\entrybig
,它需要在列表中,例如\outerlist{}
您对
\entrybig
使用的语法是错误的。这个宏需要 4 个强制参数,不是 2,不是 3,恰好是 4因为这个宏被插入到 table 单元格中,所以你不能滥用
\
换行符
\documentclass[letterpaper,11pt]{article}
% Choose bibliography style for formatting list of publications
\usepackage[style=ieee,url=false,doi=false,maxbibnames=99,sorting=ydnt,dashed=false]{biblatex}
\bibliography{papers}
% Choose theme, e.g. black, RedViolet, ForestGreen, MidnightBlue
\def\theme{MidnightBlue}
\usepackage{simplecv}
\begin{document}
See more of my projects on \website{https://github.com/Mihutzen}
\vspace{1em}
\outerlist{
\entrybig
{\textbf{ETH Zurich}}
{Zurich, CH}
{M.S. in Computer Science, GPA: 5.63/6.00}
{2018\textendash 2020}
}
\end{document}