Skip to content

Common Chinglish Errors in Academic Writing

Table of Contents


Category 1: Sentence Structure

1.1 Topic-Prominent Structure

❌ "This method, its advantage is obvious." ✅ "The advantage of this method is obvious."

1.2 Run-on Sentences

❌ "We propose a method it can solve the problem." ✅ "We propose a method that can solve the problem."

1.3 Missing Articles

❌ "Deep learning is popular technology." ✅ "Deep learning is a popular technology."

Category 2: Word Choice

2.1 Weak Verbs

ChinglishAcademic
makeconstruct, generate, produce, create
doperform, conduct, execute, carry out
getobtain, achieve, derive, acquire
useemploy, utilize, leverage, adopt
showdemonstrate, illustrate, reveal, indicate
finddiscover, identify, observe, determine

2.2 Informal Expressions

AvoidUse Instead
a lot ofnumerous, substantial, considerable
bigsignificant, substantial, major
veryhighly, considerably, substantially
thingsfactors, elements, aspects, components
goodeffective, efficient, optimal, superior

2.3 Redundant Expressions

RedundantConcise
completely eliminateeliminate
future prospectsprospects
past historyhistory
basic fundamentalsfundamentals
advance planningplanning

Category 3: Hedging (避免绝对化)

Forbidden Absolute Words

  • ❌ "obviously", "clearly", "certainly", "undoubtedly"
  • ❌ "always", "never", "all", "none"
  • ❌ "prove", "prove that" (unless mathematical proof)

Academic Hedging

  • ✅ "It appears that...", "It seems that..."
  • ✅ "The results suggest...", "The data indicate..."
  • ✅ "This may be attributed to..."
  • ✅ "One possible explanation is..."

Category 4: Tense Usage

Abstract

  • Present tense for general statements
  • Past tense for specific findings

Introduction

  • Present tense for established facts
  • Present perfect for recent developments

Methods

  • Past tense (what you did)

Results

  • Past tense for your findings
  • Present tense for tables/figures ("Table 1 shows...")

Discussion

  • Present tense for interpretations
  • Past tense for referencing results

Category 5: Common Phrase Errors

Preposition Errors

WrongCorrect
according withaccording to
based inbased on
compare with (similar)compare to (similar)
different withdifferent from
focus atfocus on

Collocation Errors

WrongCorrect
do an experimentconduct/perform an experiment
make a conclusiondraw/reach a conclusion
take effortsmake efforts
rise a questionraise a question
solve problemsaddress/tackle problems

Category 6: Chinese-English Translation Patterns

6.1 Direct Translation Errors

中文❌ Chinglish✅ English
越来越多more and moreincreasingly
近年来in recent yearsrecently / since 2020
发挥重要作用play an important roleis crucial for / enables
取得了很大进展made great progresshas advanced significantly
随着...的发展with the development ofas X advances / given advances in

6.2 Academic Expression Patterns

中文English
本文提出...We propose... / This paper presents...
实验结果表明...Experimental results demonstrate that...
与...相比Compared with... / In comparison to...
综上所述In summary / In conclusion
值得注意的是Notably / It is worth noting that

Typst-Specific Notes

Comment Syntax

typst
// This is a single-line comment
/* This is a
   multi-line comment */

Common Typst Errors

❌ Using LaTeX syntax: \cite{} ✅ Using Typst syntax: @cite

❌ Using LaTeX math: \frac{a}{b} ✅ Using Typst math: $a/b$ or $(a)/(b)$

❌ Using LaTeX environments: \begin{figure} ✅ Using Typst functions: #figure(...)

Released under the MIT License.