Skip to content

Posts by Pairach

Five Steps to a High-Performance Supply Chain [White paper]


Cloud computing and big data is expected to be the next big thing in many field. That also includes “Supply Chain Management” (SCM). The Council of Supply Chain Management Professional (CSCMP) has just published a white paper entitled “Five Steps to a High-Performance  Supply Chain“. To download this paper, just click on the picture bellows. Then fill a few information (then CSCMP get some idea who are their audience. In exchange, you can read a short but precise steps to achieve a high-performance supply chain through cloud technology.

Picture from: CSCMP

Customer Responsive Supply Chain Strategy [vdo]


In supply chain management, one of the key objective is to be responsive to the customer needs, which can be changed anytime. This short VDO by Cranfield explains a bit about this application of SCM.

“Dr Janet Godsell speaks to John Burdett, who outlines how Tata Global Beverages is gaining practical business benefits from applying some of the theory resulting from the recent Supply Chain Responsiveness in Practice (SCRiP) research project. An exploration of volume variability and application of supply chain segmentation theory enables the business to identify where value lies, improve processes and be more responsive to demand, improving their overall competitive advantage”

Source: CranfieldSOM’s Youtube channel

How I became an economist


Inspired by the autobiography of Paul Samuelson in the NobelPrize.org, telling his story of more than 90 years. I humbly also would like to record my own one here.

 

I was trained as an economist at Chiang Mai School of Economics (Thailand) during 2001 – 2005. Economics was my first choice (actually the only one) when I was apply for the higher education in Thailand. Initially I was always aiming to study engineering but my performance in Physics was not so well.  Despite the fact that I might still try to go for it. When my guidance teacher told us to think about what would we like to be. Then go for the subject (faculty) that will make you so. I imagined myself as an engineer doing work with construction. That the first time I realised that I don’t want to be an engineer. It was a trend that a boy who doing well in Math should go to the engineering school. And that was not my way.

to be continued …

Handling of the author prefix in Bibtex


In the reference list, references are often ordered based on the surname of the first author alphabetically (A to Z). However some of author names contain prefix such as van or de. This is normally treated as the first letter of the author name in LaTeX. To retain this prefix in the reference but ignored by LaTeX, there is a need to do something more in the LaTeX script. Here is how to do it.

Assume we would like to deal with the reference whose first author name is Arjan van Weele, there are four steps to deal with this issue.

1. In preamble, add the following code.

\DeclareRobustCommand{\VAN}[3]{#2}

2. Just before declare \bibliography{}, add the following code.

\DeclareRobustCommand{\VAN}[3]{#3}

3. In the BibTeX, record author name as follows.

{\VAN{Weele}{Van}{van}} Weele, Arjan

4. Compile LaTeX as usual

Source: Tex.stackexchange.com

Rename Bibliography to References in LaTeX


If the Babel package is used,

For book or report class, add the following code in the preamble.

\addto\captionsenglish{\renewcommand{\bibname}{References}}

For article class, add the following code in the preamble.

\addto\captionsenglish{\renewcommand{\refname}{References}}

If the Babel package is NOT used,

For book or report class, add the following code in the preamble.

\renewcommand{\bibname}{References}

For article class, add the following code in the preamble.

\renewcommand{\refname}{References}